17 lines
232 B
C++
17 lines
232 B
C++
#ifndef UTIL_UTIL_H
|
|
#define UTIL_UTIL_H
|
|
|
|
#include <string>
|
|
|
|
|
|
namespace DataStorageInterface {
|
|
namespace Util {
|
|
|
|
int GetTimestamp();
|
|
int GetUTCOffset();
|
|
|
|
} // namespace Util
|
|
} // namespace DataStorageInterface
|
|
|
|
#endif // UTIL_UTIL_H
|