Index: src/libchcore/TTimestampProviderTickCount.h =================================================================== diff -u -N -r9b8cccbee0fcfeca28a112cc0253a7641f73f74f -re96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3 --- src/libchcore/TTimestampProviderTickCount.h (.../TTimestampProviderTickCount.h) (revision 9b8cccbee0fcfeca28a112cc0253a7641f73f74f) +++ src/libchcore/TTimestampProviderTickCount.h (.../TTimestampProviderTickCount.h) (revision e96806b7f8ff7ca7e9f4afbea603e6351a3dc3e3) @@ -22,20 +22,19 @@ #include "libchcore.h" #include "ITimestampProvider.h" -BEGIN_CHCORE_NAMESPACE - -class TTimestampProviderTickCount : public ITimestampProvider +namespace chcore { -public: - TTimestampProviderTickCount(); + class TTimestampProviderTickCount : public ITimestampProvider + { + public: + TTimestampProviderTickCount(); - virtual unsigned long long GetCurrentTimestamp() const; + virtual unsigned long long GetCurrentTimestamp() const; -private: - mutable unsigned long long m_ullTimestampAdjustment; - mutable DWORD m_dwLastTimestamp; -}; + private: + mutable unsigned long long m_ullTimestampAdjustment; + mutable DWORD m_dwLastTimestamp; + }; +} -END_CHCORE_NAMESPACE - #endif