aboutsummaryrefslogtreecommitdiff
path: root/source/CodegenRuntime/Metadata.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/CodegenRuntime/Metadata.hpp')
-rw-r--r--source/CodegenRuntime/Metadata.hpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/source/CodegenRuntime/Metadata.hpp b/source/CodegenRuntime/Metadata.hpp
deleted file mode 100644
index e89fd8f..0000000
--- a/source/CodegenRuntime/Metadata.hpp
+++ /dev/null
@@ -1,33 +0,0 @@
-#pragma once
-
-#include "MacrosCodegen.hpp"
-#include "MetadataBase.hpp"
-
-namespace Metadata {
-
-struct TypeInfoList {
- struct Sentinel {
- };
-
- struct Iterator {
- void* data;
-
- const TypeInfo& operator*() const;
- Iterator& operator++();
- Iterator operator++(int);
-
- bool operator==(const Iterator&) const;
- bool operator==(const Sentinel&) const;
- };
-
- Iterator begin() const;
- Sentinel end() const;
-};
-
-/// Get a list of all type infos present.
-const TypeInfoList& GetTypeInfoList();
-
-const TypeInfo* QueryTypeInfo(TypeId id);
-const TypeInfo* QueryTypeInfo(std::string_view name);
-
-} // namespace Metadata