Changeset 667 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 03/02/01 13:43:09 (24 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParList.cc
r666 r667 24 24 ClassImp(MParList) 25 25 26 MParList::MParList( )26 MParList::MParList(const char *name, const char *title) 27 27 { 28 // 29 // default constructor 30 // creates an empty list 31 // 32 28 // 29 // default constructor 30 // creates an empty list 31 // 32 *fName = name ? name : "MParList"; 33 *fTitle = title ? title : "List of Parameter Containers"; 33 34 } 34 35 35 36 MParList::MParList(MParList &ts) 36 37 { 37 //38 // copy constructor39 //38 // 39 // copy constructor 40 // 40 41 41 fContainer.AddAll(&ts.fContainer);42 fContainer.AddAll(&ts.fContainer); 42 43 } 43 44 -
trunk/MagicSoft/Mars/mbase/MParList.h
r666 r667 29 29 30 30 public: 31 MParList( );31 MParList(const char *name=NULL, const char *title=NULL); 32 32 MParList(MParList &ts); 33 33
Note:
See TracChangeset
for help on using the changeset viewer.