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

Method Set

Source/cmArchiveWrite.h:22–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20 explicit cmArchiveWriteOptional(T val) { this->Set(val); }
21
22 void Set(T val)
23 {
24 this->IsValueSet = true;
25 this->Value = val;
26 }
27 void Clear() { this->IsValueSet = false; }
28 bool IsSet() const { return this->IsValueSet; }
29 T Get() const { return this->Value; }

Callers 4

SetPermissionsMethod · 0.45
SetPermissionsMaskMethod · 0.45
SetUIDAndGIDMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected