gramods
Loading...
Searching...
No Matches
RunOnce.hh
1
2#ifndef GRAMODS_CORE_RUNONCE
3#define GRAMODS_CORE_RUNONCE
4
17#define GM_RUNONCE(CODE) \
18 { \
19 static bool _gramods_executed = false; \
20 if (!_gramods_executed) { \
21 _gramods_executed = true; \
22 CODE; \
23 } \
24 }
25
26#define GM_RUNONCE_BEGIN \
27 { \
28 static bool _gramods_executed = false; \
29 if (!_gramods_executed) { \
30 _gramods_executed = true;
31
32#define GM_RUNONCE_END }}//
33
34#endif