OpenLexocad  27.1
BaseInit.h
Go to the documentation of this file.
1 #pragma once
2 #pragma warning(disable : 4251)
3 
4 namespace Base
5 {
6 class LX_BASE_EXPORT BaseInit
7 {
8 public:
9  static void init();
10  static void release();
11 
12 private:
13  static bool isInit;
14 };
15 } // namespace Base
Definition: AbstractXMLReader.h:5
Definition: BaseInit.h:6