OpenLexocad  27.0
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 #include <Core/core_defines2.h>
7 
8 CORE_EXPORT void do_profile_core(bool on);
10 
11 namespace Core
12 {
14 {
15 public:
16  CoreInit() {}
17  ~CoreInit() {}
18 
19 public:
20  static void init();
21  static void release();
22 
23 private:
24  static bool isInit;
25 };
26 
27 } // namespace Core
28 
29 #endif // CORE_H
#define CORE_EXPORT
Definition: core_defines2.h:10
CoreInit()
Definition: CoreInit.h:16
CORE_EXPORT size_t get_profiled_mem_core()
Definition: Base.h:19
Definition: CoreInit.h:13
~CoreInit()
Definition: CoreInit.h:17
CORE_EXPORT void do_profile_core(bool on)