|
|
template<typename T > |
| T | ast::aobject_cast (Object *obj) |
| |
| errc_t | ast::aFakeGet (const void *container, void *value) |
| |
| errc_t | ast::aFakeSet (void *container, const void *value) |
| |
|
template<> |
| std::string | ast::Property::getValue< std::string > (const void *container) |
| |
|
Property * | ast::_aNewPropertyBool (FPropertyGet getter, FPropertySet setter) |
| |
|
Property * | ast::_aNewPropertyInt (FPropertyGet getter, FPropertySet setter) |
| |
|
Property * | ast::_aNewPropertyDouble (FPropertyGet getter, FPropertySet setter) |
| |
|
Property * | ast::_aNewPropertyString (FPropertyGet getter, FPropertySet setter) |
| |
|
Property * | ast::_aNewPropertyQuantity (FPropertyGet getter, FPropertySet setter, Dimension dimension) |
| |
|
Property * | ast::_aNewPropertyObject (FPropertyGet getter, FPropertySet setter, Class *cls) |
| |
|
template<typename T > |
| Property * | ast::_aNewProperty (FPropertyGet getter, FPropertySet setter) |
| |
|
template<> |
| Property * | ast::_aNewProperty< bool > (FPropertyGet getter, FPropertySet setter) |
| |
|
template<> |
| Property * | ast::_aNewProperty< int > (FPropertyGet getter, FPropertySet setter) |
| |
|
template<> |
| Property * | ast::_aNewProperty< double > (FPropertyGet getter, FPropertySet setter) |
| |
|
template<> |
| Property * | ast::_aNewProperty< std::string > (FPropertyGet getter, FPropertySet setter) |
| |
|
template<typename T , typename MemberType , MemberType T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyMem () |
| |
|
template<typename T , typename Ret , Ret(T::*)() const Getter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyReadOnly () |
| |
|
template<typename T , typename Ret , Ret(T::*)() const Getter, void(T::*)(Ret) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewProperty () |
| |
|
template<typename T , typename Ret , Ret(T::*)() const Getter, errc_t(T::*)(Ret) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyWithError () |
| |
|
template<typename T , double T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyQuantity (Dimension dim) |
| |
|
template<typename T , double(T::*)() const Getter, void(T::*)(double) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyQuantity (Dimension dim) |
| |
|
template<typename T , double(T::*)() const Getter, errc_t(T::*)(double) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyQuantityWithError (Dimension dim) |
| |
|
template<typename T , typename ObjectType , ObjectType *T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyObject () |
| |
|
template<typename T , typename ObjectType , ObjectType *(T::*)() const Getter, void(T::*)(ObjectType *) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyObject () |
| |
|
template<typename T , typename ObjectType , ObjectType *(T::*)() const Getter, errc_t(T::*)(ObjectType *) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyObjectWithError () |
| |
|
template<typename T , bool T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyBoolMem () |
| |
|
template<typename T , int T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyIntMem () |
| |
|
template<typename T , double T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyDoubleMem () |
| |
|
template<typename T , std::string T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyStringMem () |
| |
|
template<typename T , bool T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyBool () |
| |
|
template<typename T , int T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyInt () |
| |
|
template<typename T , double T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyDouble () |
| |
|
template<typename T , std::string T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyString () |
| |
|
template<typename T , double T::* Member> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyQuantityMem (Dimension dim) |
| |
|
template<typename T , bool(T::*)() const Getter, void(T::*)(bool) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyBool () |
| |
|
template<typename T , int(T::*)() const Getter, void(T::*)(int) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyInt () |
| |
|
template<typename T , double(T::*)() const Getter, void(T::*)(double) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyDouble () |
| |
|
template<typename T , const std::string &(T::*)() const Getter, void(T::*)(StringView) Setter> |
| A_ALWAYS_INLINE Property * | ast::aNewPropertyString () |
| |
| void | ast::aGetAllClassNames (std::vector< std::string > &names) |
| |
| const std::unordered_map< std::string, Class * > & | ast::aGetAllClasses () |
| |
| Class * | ast::aGetClass (StringView name) |
| |
| bool | ast::aIsVirtualClass (StringView name) |
| |
| void | ast::aRegisterClass (Class *cls, StringView name=StringView()) |
| |
| Object * | ast::aGetClassDefaultObject (StringView name) |
| |
| Object * | ast::aGetClassDefaultObject (Class *cls) |
| |
| Object * | ast::aNewObject (StringView typeName, Object *parentScope=nullptr) |
| |
| template<typename T > |
| T * | ast::aNewObject (Object *parentScope=nullptr) |
| |
| void | ast::aDeleteObject (Object *obj) |
| |
| SharedPtr< Object > | ast::aMakeObject (StringView name, Object *parentScope=nullptr) |
| |
| Object * | ast::aResolveObject (StringView value, Class *cls=nullptr) |
| |
|
template<typename T > |
| T | ast::aResolveObject (StringView value) |
| |
| Object * | ast::aGetObject (uint32_t id) |
| |
| uint32_t | ast::aAddObject (Object *object) |
| |
| errc_t | ast::aRemoveObject (Object *object) |
| |
| void | ast::aRemoveAllObjects () |
| |
| int | ast::aGetObjectCount () |
| |
| std::vector< Object * > | ast::aFindObjects (Class *cls, StringView name=StringView()) |
| |
| Object * | ast::aFindObject (Class *cls, StringView name=StringView()) |
| |
|
template<typename T > |
| T | ast::aFindObject (StringView name=StringView()) |
| |
| errc_t | ast::aSetParentScope (Object *obj, Object *parentScope) |
| |
| Object * | ast::aGetParentScope (Object *obj) |
| |
| Object * | ast::aGetAncestorScope (Object *obj, Class *cls) |
| |
|
template<typename T > |
| T | ast::aGetAncestorScope (Object *obj) |
| |
| std::vector< Object * > | ast::aGetAllObjects () |
| |
| void | ast::aPrintAllObjects () |
| |
| Object * | ast::aFindChild (Object *parentScope, Class *cls=nullptr, StringView name=StringView()) |
| |
|
template<typename T > |
| T | ast::aFindChild (Object *parentScope, StringView name=StringView()) |
| |
| errc_t | ast::aFindChildren (Object *parentScope, Class *cls, StringView name, std::vector< Object * > &children) |
| |
| std::vector< Object * > | ast::aFindChildren (Object *parentScope, Class *cls=nullptr, StringView name=StringView()) |
| |
| void | ast::aPrintObject (Object *obj, int indent=0, const ObjectPrintConfig &config=ObjectPrintConfig()) |
| |
| void | ast::aPrintObjectTree (Object *root, int indent=0) |
| |
|
void | ast::aPrintObjectTree (Object *root, int indent, const ObjectPrintConfig &config) |
| |
| template<typename T > |
| bool | ast::Object::isOfType () const |
| |
|
template<> |
| double | ast::Property::getValue (const void *container) |
| |