OpenLexocad  27.0
Bool.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Base/base_defines.h>
4 
5 namespace Base
6 {
8 {
10  // //
11  // --------------------- BEGIN API --------------------- //
12  // //
13  // ATTENTION: DO NOT CHANGE ANY SIGNATURES IN THE API ! //
14  // //
16 
17  Bool() : value(false) {}
18  Bool(bool b) : value(b) {}
19  bool value;
20 
22  // //
23  // ---------------------- END API ---------------------- //
24  // //
26 };
27 } // namespace Base
#define BASE_EXPORT
Definition: base_defines.h:12
Definition: Bool.h:7
bool value
Definition: Bool.h:19
Definition: AbstractXMLReader.h:8
Bool()
Definition: Bool.h:17
Bool(bool b)
Definition: Bool.h:18