MCPcopy Create free account
hub / github.com/Kitware/CMake / boolean

Class boolean

Utilities/cmcppdap/include/dap/types.h:38–50  ·  view source on GitHub ↗

boolean holds a true or false value. boolean defaults to false.

Source from the content-addressed store, hash-verified

36// boolean holds a true or false value.
37// boolean defaults to false.
38class boolean {
39 public:
40 inline boolean() : val(false) {}
41 inline boolean(bool i) : val(i) {}
42 inline operator bool() const { return val; }
43 inline boolean& operator=(bool i) {
44 val = i;
45 return *this;
46 }
47
48 private:
49 bool val;
50};
51
52// integer holds a whole signed number.
53// integer defaults to 0.

Callers 8

TEST_FFunction · 0.85
TESTFunction · 0.85
deserializeMethod · 0.85
deserializeMethod · 0.85
deserializeMethod · 0.85
processRequestMethod · 0.85
GetSimpleObjectMethod · 0.85
TESTFunction · 0.85

Calls

no outgoing calls

Tested by 4

TEST_FFunction · 0.68
TESTFunction · 0.68
GetSimpleObjectMethod · 0.68
TESTFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…