Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
CB_XBase Struct Reference
Inheritance diagram for CB_XBase:

Public Member Functions

void VMethodA (const AClass *a)
 
void d_VMethodA (const AClass *a)
 
void VMethodB (const BClass *b)
 
void d_VMethodB (const BClass *b)
 

Detailed Description

Definition at line 103 of file test10.cc.

Member Function Documentation

void CB_XBase::d_VMethodA ( const AClass a)
inline

Definition at line 111 of file test10.cc.

References XBase::VMethodA().

Referenced by BOOST_PYTHON_MODULE().

111  {
112  XBase::VMethodA(a);
113  }
virtual void VMethodA(const AClass *a)
Definition: test10.cc:66
void CB_XBase::d_VMethodB ( const BClass b)
inline

Definition at line 123 of file test10.cc.

References XBase::VMethodB().

Referenced by BOOST_PYTHON_MODULE().

123  {
124  XBase::VMethodB(b);
125  }
virtual void VMethodB(const BClass *b)
Definition: test10.cc:70
void CB_XBase::VMethodA ( const AClass a)
inline

Definition at line 104 of file test10.cc.

References XBase::VMethodA().

104  {
105  if(const override& f= get_override("VMethodA"))
106  f(a);
107  else
108  XBase::VMethodA(a);
109  }
virtual void VMethodA(const AClass *a)
Definition: test10.cc:66
void CB_XBase::VMethodB ( const BClass b)
inline

Definition at line 116 of file test10.cc.

References XBase::VMethodB().

116  {
117  if(const override& f= get_override("VMethodB"))
118  f(b);
119  else
120  XBase::VMethodB(b);
121  }
virtual void VMethodB(const BClass *b)
Definition: test10.cc:70

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