14 lines
270 B
Text
14 lines
270 B
Text
|
|
export module lsd.chrono;
|
||
|
|
import std;
|
||
|
|
|
||
|
|
export namespace lt::lsd::chrono {
|
||
|
|
|
||
|
|
using std::chrono::duration;
|
||
|
|
using std::chrono::steady_clock;
|
||
|
|
using std::chrono::time_point;
|
||
|
|
using std::chrono::time_point_cast;
|
||
|
|
|
||
|
|
using std::chrono::milliseconds;
|
||
|
|
|
||
|
|
} // namespace lt::lsd::chrono
|