MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Samples / BoolSetting

Class BoolSetting

framework/platform/configuration.h:46–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44};
45
46class BoolSetting : public Setting
47{
48 public:
49 BoolSetting(bool &handle, bool value);
50
51 virtual void set() override;
52
53 virtual std::type_index get_type() override;
54
55 private:
56 bool &handle;
57
58 bool value;
59};
60
61class IntSetting : public Setting
62{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected