#include <AClass.hh>
Definition at line 41 of file AClass.hh.
 
      
        
          | AClass::AClass  | 
          ( | 
          int  | 
          i,  | 
        
        
           | 
           | 
          double  | 
          d = 0.  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
      
        
          | AClass::AClass  | 
          ( | 
          int  | 
          i,  | 
        
        
           | 
           | 
          double  | 
          d = 0.  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
Definition at line 38 of file test10.cc.
   39     std::cout << 
"*** AClass is created..." << 
this 
 
 
 
Definition at line 43 of file test10.cc.
   44     std::cout << 
"*** AClass is deleted..." << 
this 
 
 
 
  
  
      
        
          | AClass::AClass  | 
          ( | 
          const AClass &  | 
          a | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
 
  
  
      
        
          | AClass::AClass  | 
          ( | 
          const AClass &  | 
          right | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
Definition at line 52 of file test12.cc.
   54     std::cout << 
"*** copy constructor is called" << std::endl;
 
 
 
 
  
  
      
        
          | static int AClass::AMethod  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inlinestatic   | 
  
 
 
      
        
          | int AClass::AMethod  | 
          ( | 
          int  | 
          i,  | 
        
        
           | 
           | 
          double  | 
          d  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
Definition at line 66 of file AClass.cc.
   69   std::cout << 
"%%% AClass::AMethod is called."  
   70         << 
" (ival, dval)= (" << ival << 
"," << dval << 
")" 
 
 
 
      
        
          | double AClass::BMethod  | 
          ( | 
          double  | 
          d | ) | 
           | 
        
      
 
 
      
        
          | double AClass::CMethod  | 
          ( | 
          int  | 
          i,  | 
        
        
           | 
           | 
          double  | 
          d1 = 1.,  | 
        
        
           | 
           | 
          double  | 
          d2 = 2.  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
 
  
  
      
        
          | double AClass::GetDVal  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
 
  
  
      
        
          | int AClass::GetIVal  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
 
      
        
          | int AClass::GetIVal  | 
          ( | 
           | ) | 
           const | 
        
      
 
 
  
  
      
        
          | int AClass::GetIVal  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
 
  
  
      
        
          | AClass * AClass::GetPointer  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
static   | 
  
 
Definition at line 58 of file AClass.cc.
static AClass * thePointer
 
 
 
 
Definition at line 48 of file test09.cc.
   50     atemp.ival= ival + aclass.ival;    
 
 
 
 
  
  
      
        
          | bool AClass::operator==  | 
          ( | 
          const AClass &  | 
          aclass | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
Definition at line 59 of file test09.cc.
   60     if(ival == aclass.ival) 
return true;
 
 
 
 
  
  
      
        
          | void AClass::Print  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
Definition at line 62 of file test12.cc.
   63     std::cout << 
"*** @" << 
this << 
": i="  
 
 
 
  
  
      
        
          | void AClass::SetDVal  | 
          ( | 
          double  | 
          d | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
 
  
  
      
        
          | int AClass::VMethod  | 
          ( | 
          const XBase *  | 
          abase | ) | 
           const | 
         
       
   | 
  
virtual   | 
  
 
 
  
  
      
        
          | AClass * AClass::thePointer = 0 | 
         
       
   | 
  
staticprotected   | 
  
 
 
The documentation for this class was generated from the following files:
- source/geant4.10.03.p02/environments/g4py/tests/test01/module/AClass.hh
 
- source/geant4.10.03.p02/environments/g4py/tests/test03/module/AClass.hh
 
- source/geant4.10.03.p02/environments/g4py/tests/test05/module/AClass.hh
 
- source/geant4.10.03.p02/environments/g4py/tests/test09/module/test09.cc
 
- source/geant4.10.03.p02/environments/g4py/tests/test12/module/test12.cc
 
- source/geant4.10.03.p02/environments/g4py/tests/test02/module/AClass.hh
 
- source/geant4.10.03.p02/environments/g4py/tests/test08/module/test08.cc
 
- source/geant4.10.03.p02/environments/g4py/tests/test10/module/test10.cc
 
- source/geant4.10.03.p02/environments/g4py/tests/test11/module/test11.cc
 
- source/geant4.10.03.p02/environments/g4py/tests/test01/module/AClass.cc
 
- source/geant4.10.03.p02/environments/g4py/tests/test02/module/AClass.cc
 
- source/geant4.10.03.p02/environments/g4py/tests/test03/module/AClass.cc
 
- source/geant4.10.03.p02/environments/g4py/tests/test05/module/AClass.cc