15 lines
160 B
C++
15 lines
160 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace lm {
|
|
|
|
class IdUtil
|
|
{
|
|
public:
|
|
static std::string newId();
|
|
static std::string nowIso8601();
|
|
};
|
|
|
|
} // namespace lm
|