[DEV/DEBUG] No stl start to work (add manual type declaration (NO RTTI))
This commit is contained in:
parent
0f84790c85
commit
6727f58881
@ -10,6 +10,7 @@
|
|||||||
#include <eproperty/Interface.hpp>
|
#include <eproperty/Interface.hpp>
|
||||||
#include <eproperty/Property.hpp>
|
#include <eproperty/Property.hpp>
|
||||||
#include <eproperty/debug.hpp>
|
#include <eproperty/debug.hpp>
|
||||||
|
#include <etk/typeInfo.hpp>
|
||||||
|
|
||||||
namespace eproperty {
|
namespace eproperty {
|
||||||
/**
|
/**
|
||||||
@ -58,7 +59,8 @@ namespace eproperty {
|
|||||||
return "eproperty::Value";
|
return "eproperty::Value";
|
||||||
}
|
}
|
||||||
etk::String getType() const override {
|
etk::String getType() const override {
|
||||||
return "?TODO?";// TODO: typeid(TYPE).name();
|
//return typeid(TYPE).name(); // With generic STL & RTTI ...
|
||||||
|
return ETK_GET_TYPE_NAME(TYPE);
|
||||||
}
|
}
|
||||||
etk::String getString() const override {
|
etk::String getString() const override {
|
||||||
return getValueSpecific(m_value);
|
return getValueSpecific(m_value);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user