Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:09

0001 #include "__class__.h"
0002 
0003 // __class__ ctor
0004 __class__::__class__()
0005 {
0006 }
0007 
0008 // __class__ dtor
0009 __class__::~__class__()
0010 {
0011 }
0012 
0013 // __class__ copy assignment
0014 const __class__&
0015 __class__::operator=(const __class__& rhs)
0016 {
0017     // Check for self-assignment.
0018     if (this == &rhs) {
0019         return *this;
0020     }
0021     // free old memory, copy new memory
0022     return *this;
0023 }
0024 
0025 // __class__ copy ctor
0026 __class__::__class__(const __class__& src)
0027 {
0028     // __class__ copy ctor
0029 }