|
||||
File indexing completed on 2024-04-06 12:13:09
0001 // -*- C++ -*- 0002 // 0003 // Package: __subsys__/__pkgname__ 0004 // Class : __class__ 0005 // 0006 // Implementation: 0007 // [Notes on implementation] 0008 // 0009 // Original Author: __author__ 0010 // Created: __date__ 0011 // 0012 0013 // system include files 0014 0015 // user include files 0016 #include "__incdir____class__.h" 0017 0018 // 0019 // constants, enums and typedefs 0020 // 0021 0022 // 0023 // static data member definitions 0024 // 0025 0026 // 0027 // constructors and destructor 0028 // 0029 __class__::__class__() { 0030 } 0031 0032 // __class__::__class__(const __class__& rhs) 0033 // { 0034 // // do actual copying here; 0035 // } 0036 0037 __class__::~__class__() { 0038 } 0039 0040 // 0041 // assignment operators 0042 // 0043 // const __class__& __class__::operator=(const __class__& rhs) 0044 // { 0045 // //An exception safe implementation is 0046 // __class__ temp(rhs); 0047 // swap(rhs); 0048 // 0049 // return *this; 0050 // } 0051 0052 // 0053 // member functions 0054 // 0055 0056 // 0057 // const member functions 0058 // 0059 0060 // 0061 // static member functions 0062 //
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |