Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

osgIntrospection::MethodInfo Class Reference

Class MethodInfo stores information about a class method. More...

Inheritance diagram for osgIntrospection::MethodInfo:

Inheritance graph
[legend]
List of all members.

Public Member Functions

 MethodInfo (const std::string &qname, const Type &decltype, const Type &rtype, const ParameterInfoList &plist)
 Direct initialization constructor.

 ~MethodInfo ()
 Destructor.

virtual const TypegetDeclaringType () const
 Returns the Type object associated to the type that declares the reflected method.

virtual const std::string & getName () const
 Returns the name of the reflected method.

const TypegetReturnType () const
 Returns the return type of the reflected method.

const ParameterInfoListgetParameters () const
 Returns a list of objects that describe the reflected method's parameters.

virtual bool isConst () const=0
 Returns whether the reflected method is const or not.

virtual bool isStatic () const=0
 Returns whether the reflected method is static or not.

bool overrides (const MethodInfo *other) const
 Returns whether this method would override the given method.

virtual Value invoke (const Value &instance, ValueList &args) const
 Invokes the reflected method dynamically on the given const instance, passing it the arguments as a list of Value objects.

virtual Value invoke (Value &instance, ValueList &args) const
 Invokes the reflected method dynamically on the given instance, passing it the arguments as a list of Value objects.

virtual Value invoke (ValueList &args) const
 Invokes the reflected static method dynamically passing it the arguments as a list of Value objects.

Value invoke (const Value &instance) const
 Invokes the reflected method dynamically on the given const instance, without arguments.

Value invoke (Value &instance) const
 Invokes the reflected method dynamically on the given instance, without arguments.

Value invoke () const
 Invokes the reflected static method without arguments.


Detailed Description

Class MethodInfo stores information about a class method.

It is an abstract class, so it must be derived to provide the actual implementation of isConst() and invoke(). Instances of this class can't be modified after their creation.


Constructor & Destructor Documentation

osgIntrospection::MethodInfo::MethodInfo const std::string &  qname,
const Type decltype,
const Type rtype,
const ParameterInfoList plist
[inline]
 

Direct initialization constructor.

osgIntrospection::MethodInfo::~MethodInfo  )  [inline]
 

Destructor.


Member Function Documentation

const Type & osgIntrospection::MethodInfo::getDeclaringType  )  const [inline, virtual]
 

Returns the Type object associated to the type that declares the reflected method.

const std::string & osgIntrospection::MethodInfo::getName  )  const [inline, virtual]
 

Returns the name of the reflected method.

const ParameterInfoList & osgIntrospection::MethodInfo::getParameters  )  const [inline]
 

Returns a list of objects that describe the reflected method's parameters.

const Type & osgIntrospection::MethodInfo::getReturnType  )  const [inline]
 

Returns the return type of the reflected method.

Value osgIntrospection::MethodInfo::invoke  )  const [inline]
 

Invokes the reflected static method without arguments.

Value osgIntrospection::MethodInfo::invoke Value instance  )  const [inline]
 

Invokes the reflected method dynamically on the given instance, without arguments.

Value osgIntrospection::MethodInfo::invoke const Value instance  )  const [inline]
 

Invokes the reflected method dynamically on the given const instance, without arguments.

Value osgIntrospection::MethodInfo::invoke ValueList args  )  const [inline, virtual]
 

Invokes the reflected static method dynamically passing it the arguments as a list of Value objects.

Reimplemented in osgIntrospection::StaticMethodInfo0< C, R >, osgIntrospection::StaticMethodInfo1< C, R, P0 >, osgIntrospection::StaticMethodInfo2< C, R, P0, P1 >, osgIntrospection::StaticMethodInfo3< C, R, P0, P1, P2 >, osgIntrospection::StaticMethodInfo4< C, R, P0, P1, P2, P3 >, osgIntrospection::StaticMethodInfo5< C, R, P0, P1, P2, P3, P4 >, osgIntrospection::StaticMethodInfo6< C, R, P0, P1, P2, P3, P4, P5 >, osgIntrospection::StaticMethodInfo7< C, R, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::StaticMethodInfo8< C, R, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::StaticMethodInfo9< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::StaticMethodInfo10< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::StaticMethodInfo11< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::StaticMethodInfo12< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::StaticMethodInfo13< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::StaticMethodInfo14< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::StaticMethodInfo15< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::StaticMethodInfo16< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::StaticMethodInfo0< C, void >, osgIntrospection::StaticMethodInfo1< C, void, P0 >, osgIntrospection::StaticMethodInfo2< C, void, P0, P1 >, osgIntrospection::StaticMethodInfo3< C, void, P0, P1, P2 >, osgIntrospection::StaticMethodInfo4< C, void, P0, P1, P2, P3 >, osgIntrospection::StaticMethodInfo5< C, void, P0, P1, P2, P3, P4 >, osgIntrospection::StaticMethodInfo6< C, void, P0, P1, P2, P3, P4, P5 >, osgIntrospection::StaticMethodInfo7< C, void, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::StaticMethodInfo8< C, void, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::StaticMethodInfo9< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::StaticMethodInfo10< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::StaticMethodInfo11< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::StaticMethodInfo12< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::StaticMethodInfo13< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::StaticMethodInfo14< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::StaticMethodInfo15< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, and osgIntrospection::StaticMethodInfo16< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >.

Value osgIntrospection::MethodInfo::invoke Value instance,
ValueList args
const [inline, virtual]
 

Invokes the reflected method dynamically on the given instance, passing it the arguments as a list of Value objects.

Reimplemented in osgIntrospection::TypedMethodInfo0< C, R >, osgIntrospection::TypedMethodInfo1< C, R, P0 >, osgIntrospection::TypedMethodInfo2< C, R, P0, P1 >, osgIntrospection::TypedMethodInfo3< C, R, P0, P1, P2 >, osgIntrospection::TypedMethodInfo4< C, R, P0, P1, P2, P3 >, osgIntrospection::TypedMethodInfo5< C, R, P0, P1, P2, P3, P4 >, osgIntrospection::TypedMethodInfo6< C, R, P0, P1, P2, P3, P4, P5 >, osgIntrospection::TypedMethodInfo7< C, R, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::TypedMethodInfo8< C, R, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::TypedMethodInfo9< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::TypedMethodInfo10< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::TypedMethodInfo11< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::TypedMethodInfo12< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::TypedMethodInfo13< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::TypedMethodInfo14< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::TypedMethodInfo15< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::TypedMethodInfo16< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::TypedMethodInfo0< C, void >, osgIntrospection::TypedMethodInfo1< C, void, P0 >, osgIntrospection::TypedMethodInfo2< C, void, P0, P1 >, osgIntrospection::TypedMethodInfo3< C, void, P0, P1, P2 >, osgIntrospection::TypedMethodInfo4< C, void, P0, P1, P2, P3 >, osgIntrospection::TypedMethodInfo5< C, void, P0, P1, P2, P3, P4 >, osgIntrospection::TypedMethodInfo6< C, void, P0, P1, P2, P3, P4, P5 >, osgIntrospection::TypedMethodInfo7< C, void, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::TypedMethodInfo8< C, void, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::TypedMethodInfo9< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::TypedMethodInfo10< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::TypedMethodInfo11< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::TypedMethodInfo12< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::TypedMethodInfo13< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::TypedMethodInfo14< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::TypedMethodInfo15< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, and osgIntrospection::TypedMethodInfo16< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >.

Value osgIntrospection::MethodInfo::invoke const Value instance,
ValueList args
const [inline, virtual]
 

Invokes the reflected method dynamically on the given const instance, passing it the arguments as a list of Value objects.

Reimplemented in osgIntrospection::TypedMethodInfo0< C, R >, osgIntrospection::TypedMethodInfo1< C, R, P0 >, osgIntrospection::TypedMethodInfo2< C, R, P0, P1 >, osgIntrospection::TypedMethodInfo3< C, R, P0, P1, P2 >, osgIntrospection::TypedMethodInfo4< C, R, P0, P1, P2, P3 >, osgIntrospection::TypedMethodInfo5< C, R, P0, P1, P2, P3, P4 >, osgIntrospection::TypedMethodInfo6< C, R, P0, P1, P2, P3, P4, P5 >, osgIntrospection::TypedMethodInfo7< C, R, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::TypedMethodInfo8< C, R, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::TypedMethodInfo9< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::TypedMethodInfo10< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::TypedMethodInfo11< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::TypedMethodInfo12< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::TypedMethodInfo13< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::TypedMethodInfo14< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::TypedMethodInfo15< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::TypedMethodInfo16< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::TypedMethodInfo0< C, void >, osgIntrospection::TypedMethodInfo1< C, void, P0 >, osgIntrospection::TypedMethodInfo2< C, void, P0, P1 >, osgIntrospection::TypedMethodInfo3< C, void, P0, P1, P2 >, osgIntrospection::TypedMethodInfo4< C, void, P0, P1, P2, P3 >, osgIntrospection::TypedMethodInfo5< C, void, P0, P1, P2, P3, P4 >, osgIntrospection::TypedMethodInfo6< C, void, P0, P1, P2, P3, P4, P5 >, osgIntrospection::TypedMethodInfo7< C, void, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::TypedMethodInfo8< C, void, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::TypedMethodInfo9< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::TypedMethodInfo10< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::TypedMethodInfo11< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::TypedMethodInfo12< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::TypedMethodInfo13< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::TypedMethodInfo14< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::TypedMethodInfo15< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, and osgIntrospection::TypedMethodInfo16< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >.

virtual bool osgIntrospection::MethodInfo::isConst  )  const [pure virtual]
 

Returns whether the reflected method is const or not.

Implemented in osgIntrospection::StaticMethodInfo0< C, R >, osgIntrospection::StaticMethodInfo1< C, R, P0 >, osgIntrospection::StaticMethodInfo2< C, R, P0, P1 >, osgIntrospection::StaticMethodInfo3< C, R, P0, P1, P2 >, osgIntrospection::StaticMethodInfo4< C, R, P0, P1, P2, P3 >, osgIntrospection::StaticMethodInfo5< C, R, P0, P1, P2, P3, P4 >, osgIntrospection::StaticMethodInfo6< C, R, P0, P1, P2, P3, P4, P5 >, osgIntrospection::StaticMethodInfo7< C, R, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::StaticMethodInfo8< C, R, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::StaticMethodInfo9< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::StaticMethodInfo10< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::StaticMethodInfo11< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::StaticMethodInfo12< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::StaticMethodInfo13< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::StaticMethodInfo14< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::StaticMethodInfo15< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::StaticMethodInfo16< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::StaticMethodInfo0< C, void >, osgIntrospection::StaticMethodInfo1< C, void, P0 >, osgIntrospection::StaticMethodInfo2< C, void, P0, P1 >, osgIntrospection::StaticMethodInfo3< C, void, P0, P1, P2 >, osgIntrospection::StaticMethodInfo4< C, void, P0, P1, P2, P3 >, osgIntrospection::StaticMethodInfo5< C, void, P0, P1, P2, P3, P4 >, osgIntrospection::StaticMethodInfo6< C, void, P0, P1, P2, P3, P4, P5 >, osgIntrospection::StaticMethodInfo7< C, void, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::StaticMethodInfo8< C, void, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::StaticMethodInfo9< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::StaticMethodInfo10< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::StaticMethodInfo11< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::StaticMethodInfo12< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::StaticMethodInfo13< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::StaticMethodInfo14< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::StaticMethodInfo15< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::StaticMethodInfo16< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::TypedMethodInfo0< C, R >, osgIntrospection::TypedMethodInfo1< C, R, P0 >, osgIntrospection::TypedMethodInfo2< C, R, P0, P1 >, osgIntrospection::TypedMethodInfo3< C, R, P0, P1, P2 >, osgIntrospection::TypedMethodInfo4< C, R, P0, P1, P2, P3 >, osgIntrospection::TypedMethodInfo5< C, R, P0, P1, P2, P3, P4 >, osgIntrospection::TypedMethodInfo6< C, R, P0, P1, P2, P3, P4, P5 >, osgIntrospection::TypedMethodInfo7< C, R, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::TypedMethodInfo8< C, R, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::TypedMethodInfo9< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::TypedMethodInfo10< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::TypedMethodInfo11< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::TypedMethodInfo12< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::TypedMethodInfo13< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::TypedMethodInfo14< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::TypedMethodInfo15< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::TypedMethodInfo16< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::TypedMethodInfo0< C, void >, osgIntrospection::TypedMethodInfo1< C, void, P0 >, osgIntrospection::TypedMethodInfo2< C, void, P0, P1 >, osgIntrospection::TypedMethodInfo3< C, void, P0, P1, P2 >, osgIntrospection::TypedMethodInfo4< C, void, P0, P1, P2, P3 >, osgIntrospection::TypedMethodInfo5< C, void, P0, P1, P2, P3, P4 >, osgIntrospection::TypedMethodInfo6< C, void, P0, P1, P2, P3, P4, P5 >, osgIntrospection::TypedMethodInfo7< C, void, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::TypedMethodInfo8< C, void, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::TypedMethodInfo9< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::TypedMethodInfo10< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::TypedMethodInfo11< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::TypedMethodInfo12< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::TypedMethodInfo13< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::TypedMethodInfo14< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::TypedMethodInfo15< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, and osgIntrospection::TypedMethodInfo16< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >.

virtual bool osgIntrospection::MethodInfo::isStatic  )  const [pure virtual]
 

Returns whether the reflected method is static or not.

Implemented in osgIntrospection::StaticMethodInfo0< C, R >, osgIntrospection::StaticMethodInfo1< C, R, P0 >, osgIntrospection::StaticMethodInfo2< C, R, P0, P1 >, osgIntrospection::StaticMethodInfo3< C, R, P0, P1, P2 >, osgIntrospection::StaticMethodInfo4< C, R, P0, P1, P2, P3 >, osgIntrospection::StaticMethodInfo5< C, R, P0, P1, P2, P3, P4 >, osgIntrospection::StaticMethodInfo6< C, R, P0, P1, P2, P3, P4, P5 >, osgIntrospection::StaticMethodInfo7< C, R, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::StaticMethodInfo8< C, R, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::StaticMethodInfo9< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::StaticMethodInfo10< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::StaticMethodInfo11< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::StaticMethodInfo12< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::StaticMethodInfo13< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::StaticMethodInfo14< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::StaticMethodInfo15< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::StaticMethodInfo16< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::StaticMethodInfo0< C, void >, osgIntrospection::StaticMethodInfo1< C, void, P0 >, osgIntrospection::StaticMethodInfo2< C, void, P0, P1 >, osgIntrospection::StaticMethodInfo3< C, void, P0, P1, P2 >, osgIntrospection::StaticMethodInfo4< C, void, P0, P1, P2, P3 >, osgIntrospection::StaticMethodInfo5< C, void, P0, P1, P2, P3, P4 >, osgIntrospection::StaticMethodInfo6< C, void, P0, P1, P2, P3, P4, P5 >, osgIntrospection::StaticMethodInfo7< C, void, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::StaticMethodInfo8< C, void, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::StaticMethodInfo9< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::StaticMethodInfo10< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::StaticMethodInfo11< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::StaticMethodInfo12< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::StaticMethodInfo13< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::StaticMethodInfo14< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::StaticMethodInfo15< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::StaticMethodInfo16< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::TypedMethodInfo0< C, R >, osgIntrospection::TypedMethodInfo1< C, R, P0 >, osgIntrospection::TypedMethodInfo2< C, R, P0, P1 >, osgIntrospection::TypedMethodInfo3< C, R, P0, P1, P2 >, osgIntrospection::TypedMethodInfo4< C, R, P0, P1, P2, P3 >, osgIntrospection::TypedMethodInfo5< C, R, P0, P1, P2, P3, P4 >, osgIntrospection::TypedMethodInfo6< C, R, P0, P1, P2, P3, P4, P5 >, osgIntrospection::TypedMethodInfo7< C, R, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::TypedMethodInfo8< C, R, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::TypedMethodInfo9< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::TypedMethodInfo10< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::TypedMethodInfo11< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::TypedMethodInfo12< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::TypedMethodInfo13< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::TypedMethodInfo14< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::TypedMethodInfo15< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, osgIntrospection::TypedMethodInfo16< C, R, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >, osgIntrospection::TypedMethodInfo0< C, void >, osgIntrospection::TypedMethodInfo1< C, void, P0 >, osgIntrospection::TypedMethodInfo2< C, void, P0, P1 >, osgIntrospection::TypedMethodInfo3< C, void, P0, P1, P2 >, osgIntrospection::TypedMethodInfo4< C, void, P0, P1, P2, P3 >, osgIntrospection::TypedMethodInfo5< C, void, P0, P1, P2, P3, P4 >, osgIntrospection::TypedMethodInfo6< C, void, P0, P1, P2, P3, P4, P5 >, osgIntrospection::TypedMethodInfo7< C, void, P0, P1, P2, P3, P4, P5, P6 >, osgIntrospection::TypedMethodInfo8< C, void, P0, P1, P2, P3, P4, P5, P6, P7 >, osgIntrospection::TypedMethodInfo9< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8 >, osgIntrospection::TypedMethodInfo10< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9 >, osgIntrospection::TypedMethodInfo11< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10 >, osgIntrospection::TypedMethodInfo12< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11 >, osgIntrospection::TypedMethodInfo13< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12 >, osgIntrospection::TypedMethodInfo14< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13 >, osgIntrospection::TypedMethodInfo15< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14 >, and osgIntrospection::TypedMethodInfo16< C, void, P0, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10, P11, P12, P13, P14, P15 >.

bool osgIntrospection::MethodInfo::overrides const MethodInfo other  )  const
 

Returns whether this method would override the given method.


The documentation for this class was generated from the following file:
Generated at Thu Nov 24 16:24:34 2005 for the OpenSceneGraph by doxygen 1.3.6.