Added reflection memory cleanup

This commit is contained in:
Vulpovile
2023-11-04 00:28:41 -07:00
parent 26398f0586
commit c0aab09960
6 changed files with 34 additions and 4 deletions

View File

@@ -15,10 +15,12 @@ namespace B3D{
~ReflectionDataTable(void);
std::string ReflectionDataTable::getClassName(void);
void mapProperty(std::string key, ReflectionProperty<void*>* prop);
private:
//Perhaps not stored here?
std::string className;
std::map<std::string, B3D::Reflection::ReflectionProperty<void*>*> propertyTable;
std::map<std::string, ReflectionProperty<void*>*> propertyTable;
Instance * parentInstance;
};
}