OpenLexocad  27.1
CoreInit.h
Go to the documentation of this file.
1 #pragma warning(disable : 4251)
2 
3 #ifndef CORE_H
4 #define CORE_H
5 
6 LX_CORE_EXPORT void do_profile_core(bool on);
7 LX_CORE_EXPORT size_t get_profiled_mem_core();
8 
9 namespace Core
10 {
11 class LX_CORE_EXPORT CoreInit
12 {
13 public:
14  CoreInit() {}
15  ~CoreInit() {}
16 
17 public:
18  static void init();
19  static void release();
20 
21 private:
22  static bool isInit;
23 };
24 
25 } // namespace Core
26 
27 #endif // CORE_H
LX_CORE_EXPORT size_t get_profiled_mem_core()
CoreInit()
Definition: CoreInit.h:14
Definition: Base.h:12
Definition: CoreInit.h:11
LX_CORE_EXPORT void do_profile_core(bool on)
~CoreInit()
Definition: CoreInit.h:15