comparison src/vamp-sdk/RealTime.cpp @ 230:5ee166dccfff distinct-libraries

* Add include guards; make code compile!
author cannam
date Fri, 07 Nov 2008 14:11:39 +0000
parents 6b30e064cab7
children 521734d2b498
comparison
equal deleted inserted replaced
229:3451f7dfa2be 230:5ee166dccfff
51 #endif 51 #endif
52 52
53 using std::cerr; 53 using std::cerr;
54 using std::endl; 54 using std::endl;
55 55
56 #include "RealTime.h"
57
58 #ifndef _WIN32 56 #ifndef _WIN32
59 #include <sys/time.h> 57 #include <sys/time.h>
58 #endif
59
60 #include <vamp-sdk/RealTime.h>
61
62 #ifdef _VAMP_IN_PLUGINSDK
63 namespace _VampPlugin {
60 #endif 64 #endif
61 65
62 namespace Vamp { 66 namespace Vamp {
63 67
64 // A RealTime consists of two ints that must be at least 32 bits each. 68 // A RealTime consists of two ints that must be at least 32 bits each.
241 } 245 }
242 246
243 const RealTime RealTime::zeroTime(0,0); 247 const RealTime RealTime::zeroTime(0,0);
244 248
245 } 249 }
250
251 #ifdef _VAMP_IN_PLUGINSDK
252 }
253 #endif
254
255