12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef BASE_TIME_CLOCK_H_
- #define BASE_TIME_CLOCK_H_
- #include "base/base_export.h"
- #include "base/time/time.h"
- namespace base {
- class BASE_EXPORT Clock {
- public:
- virtual ~Clock();
-
-
-
- virtual Time Now() const = 0;
- };
- }
- #endif
|