class ROOT::Reflex::Object

Function Members (Methods)

public:
~Object()
void*Address() const
ROOT::Reflex::ObjectCastObject(const ROOT::Reflex::Type& to) const
voidDestruct() const
ROOT::Reflex::TypeDynamicType() const
ROOT::Reflex::ObjectGet(const string& dm) const
ROOT::Reflex::ObjectInvoke(const string& fm, vector<void*> args = std::vector<void*>()) const
ROOT::Reflex::ObjectInvoke(const string& fm, const ROOT::Reflex::Type& sign, vector<void*> args = std::vector<void*>()) const
ROOT::Reflex::ObjectObject(const ROOT::Reflex::Object& obj)
ROOT::Reflex::ObjectObject(const ROOT::Reflex::Type& type = Type(), void* mem = 0)
booloperator bool() const
booloperator!=(const ROOT::Reflex::Object& obj)
ROOT::Reflex::Objectoperator=(const ROOT::Reflex::Object& obj)
booloperator==(const ROOT::Reflex::Object& obj)
voidSet(const string& dm, const void* value) const
ROOT::Reflex::TypeTypeOf() const
private:
voidSet2(const string& dm, const void* value) const

Data Members

private:
void*fAddress
ROOT::Reflex::TypefType

Class Charts

Inheritance Inherited Members Includes Libraries
Class Charts

Function documentation

Get(const string& dm) const
 Get a data member value of this object.
Invoke(const string& fm, vector<void*> args = std::vector<void*>()) const
 Invoke a data member of this object.

m = TypeOf().FunctionMemberAt( fm );
if ( m ) {
if ( args.size() ) return m.Invoke( * this, args );
else               return m.Invoke( * this );
}
else throw RuntimeError("No such MemberAt " + fm );
return Object();

Invoke(const string& fm, const ROOT::Reflex::Type& sign, vector<void*> args = std::vector<void*>()) const
 Invoke a data member of this object. Sign can be used for finding overloaded funs.
void Set2(const string& dm, const void* value) const
 Internal set method. Wrapped from Set methods.
inline Object(const ROOT::Reflex::Type& type = Type(), void* mem = 0)
{}
inline Object(const ROOT::Reflex::Object& obj)
{}
inline operator bool()
void * Address()
ROOT::Reflex::Object CastObject(const ROOT::Reflex::Type& to) const
void Destruct()
ROOT::Reflex::Type DynamicType()
void Set(const string& dm, const void* value) const
ROOT::Reflex::Type TypeOf()
~Object()
 destructor 
{}

Author: Stefan Roiser 2004
Last update: root/reflex:$Id: Object.h 20883 2007-11-19 11:52:08Z rdm $

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.