Mercurial > hg > vamp-plugin-sdk
comparison src/vamp-sdk/RealTime.cpp @ 233:521734d2b498 distinct-libraries
* Flatten directory tree a bit, update doxygen
author | cannam |
---|---|
date | Fri, 07 Nov 2008 15:28:33 +0000 |
parents | 5ee166dccfff |
children | 3ee97caa8fb6 |
comparison
equal
deleted
inserted
replaced
232:71ea10a3cbe7 | 233:521734d2b498 |
---|---|
57 #include <sys/time.h> | 57 #include <sys/time.h> |
58 #endif | 58 #endif |
59 | 59 |
60 #include <vamp-sdk/RealTime.h> | 60 #include <vamp-sdk/RealTime.h> |
61 | 61 |
62 #ifdef _VAMP_IN_PLUGINSDK | 62 _VAMP_SDK_PLUGSPACE_BEGIN(RealTime.cpp) |
63 namespace _VampPlugin { | |
64 #endif | |
65 | 63 |
66 namespace Vamp { | 64 namespace Vamp { |
67 | 65 |
68 // A RealTime consists of two ints that must be at least 32 bits each. | 66 // A RealTime consists of two ints that must be at least 32 bits each. |
69 // A signed 32-bit int can store values exceeding +/- 2 billion. This | 67 // A signed 32-bit int can store values exceeding +/- 2 billion. This |
246 | 244 |
247 const RealTime RealTime::zeroTime(0,0); | 245 const RealTime RealTime::zeroTime(0,0); |
248 | 246 |
249 } | 247 } |
250 | 248 |
251 #ifdef _VAMP_IN_PLUGINSDK | 249 _VAMP_SDK_PLUGSPACE_END(RealTime.cpp) |
252 } | 250 |
253 #endif | 251 |
254 | 252 |
255 |