Reflection stub
This commit is contained in:
23
src/source/Reflection/ReflectionProperty.cpp
Normal file
23
src/source/Reflection/ReflectionProperty.cpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#include "Reflection\ReflectionProperty.h"
|
||||
using namespace B3D::Reflection;
|
||||
|
||||
template<typename T>
|
||||
ReflectionProperty<T>::ReflectionProperty(T * value, ReflectionType type, ReflectionDataTable * containerTable, bool archivable = true, bool locked = false, bool propertyHidden = false)
|
||||
{
|
||||
this->value = value;
|
||||
this->type = type;
|
||||
this->containerTable = containerTable;
|
||||
this->locked = locked;
|
||||
this->archivable = archivable;
|
||||
this->propertyHidden = propertyHidden;
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
ReflectionProperty<T>::ReflectionProperty(void)
|
||||
{
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
ReflectionProperty<T>::~ReflectionProperty(void)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user