13 lines
270 B
C++
13 lines
270 B
C++
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
|