Xrtti::ConstructorSignature Class Reference

#include <Xrtti.h>

Inheritance diagram for Xrtti::ConstructorSignature:

Xrtti::DestructorSignature Xrtti::MethodSignature

List of all members.

Public Member Functions

virtual ~ConstructorSignature ()
bool operator== (const ConstructorSignature &other) const
bool operator!= (const ConstructorSignature &other) const
virtual u32 GetArgumentCount () const =0
virtual const ArgumentGetArgument (u32 index) const =0
virtual bool HasEllipsis () const =0


Detailed Description

************************************************************************** ConstructorSignature describes the signature of a constructor

Constructor & Destructor Documentation

virtual Xrtti::ConstructorSignature::~ConstructorSignature (  )  [inline, virtual]


Member Function Documentation

bool Xrtti::ConstructorSignature::operator== ( const ConstructorSignature other  )  const

Equality operator - returns true if this object is "functionally equivalent" to [other]. The two objects don't have to be exactly identical, but do have to be identical in every meaningful way. Note also that this doesn't test for equality of any base class members; it is a test only at this level of the inheritence hierarcy. To test if an object is completely equals, including for all of its subclasses defined in the Xrtti hierarchy, you must cast this class to its most derived class and call that method.

Parameters:
other is the other object to compare against
Returns:
true if this object is functionally equal to the other, false if not

bool Xrtti::ConstructorSignature::operator!= ( const ConstructorSignature other  )  const [inline]

Inequality operator - returns false when the == operator would return true, and vice versa.

Parameters:
other is the other object to compare against
Returns:
false when the == operator would return true, and vice versa.

virtual u32 Xrtti::ConstructorSignature::GetArgumentCount (  )  const [pure virtual]

Returns the number of arguments of the constructor.

Returns:
the number of arguments of the constructor.

virtual const Argument& Xrtti::ConstructorSignature::GetArgument ( u32  index  )  const [pure virtual]

Returns the argument at index [index].

Returns:
the argument at index [index].

virtual bool Xrtti::ConstructorSignature::HasEllipsis (  )  const [pure virtual]

Returns true if the constructor has ellipsis - an undefined number of arguments following the final declared argument, or false if it does not.

Returns:
true if the constructor has ellipsis


The documentation for this class was generated from the following file:

Generated on Sat Feb 14 22:48:49 2009 by  doxygen 1.5.7.1