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

Class Base

framework/debug_info.h:37–48  ·  view source on GitHub ↗

* @brief Base Field Interface class */

Source from the content-addressed store, hash-verified

35 * @brief Base Field Interface class
36 */
37struct Base
38{
39 std::string label;
40
41 Base(const std::string &label) :
42 label{label}
43 {}
44
45 virtual ~Base() = default;
46
47 virtual const std::string to_string() = 0;
48};
49
50/**
51 * @brief Static Field Implementation

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected