Time Shield Library
C++ library for working with time
Loading...
Searching...
No Matches
initialization.mqh
Go to the documentation of this file.
1//+------------------------------------------------------------------+
2//| initialization.mqh |
3//| Time Shield - Library Initialization Functions |
4//| Copyright 2025, NewYaroslav |
5//| https://github.com/NewYaroslav/time-shield-cpp |
6//+------------------------------------------------------------------+
7#ifndef __TIME_SHIELD_INITIALIZATION_MQH__
8#define __TIME_SHIELD_INITIALIZATION_MQH__
9
17
18#property copyright "Copyright 2025, NewYaroslav"
19#property link "https://github.com/NewYaroslav/time-shield-cpp"
20#property strict
21
22#include "time_utils.mqh"
23
24namespace time_shield {
25
32 void init() {
34 }
35
36}; // namespace time_shield
37
38#endif // __TIME_SHIELD_INITIALIZATION_MQH__
void init()
Initializes the Time Shield library.
long microseconds()
Get the number of microseconds since the UNIX epoch.
Main namespace for the Time Shield library.
Header with time-related utility functions.