Changeset 9490 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 08/13/09 18:57:30 (15 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MArgs.cc
r9482 r9490 182 182 if (s->BeginsWith(name)) 183 183 return s->Data()+s->Index(name)+name.Length(); 184 return 0;184 return ""; 185 185 } 186 186 … … 230 230 return str; 231 231 } 232 return 0;232 return ""; 233 233 } 234 234 -
trunk/MagicSoft/Mars/mbase/MLut.h
r9462 r9490 56 56 // TObject 57 57 void Print(const Option_t *o="") const; 58 void Print(const Option_t *o, const Option_t *o2) const { Print(o); } 58 void Print(const Option_t *o, Option_t *) const { Print(o); } 59 void Print(const Option_t *o, Int_t) const { Print(o); } 60 void Print(const Option_t *o, const char*, Int_t) const { Print(o); } 61 void Print(const Option_t *o, TPRegexp&, Int_t) const { Print(o); } 59 62 60 63 ClassDef(MLut, 1) // A simple and fast easy-to-use look-up-table -
trunk/MagicSoft/Mars/mbase/MStatusArray.h
r9026 r9490 39 39 40 40 void Print(Option_t *o="") const; 41 void Print(const Option_t *o, Option_t *) const { Print(o); } 41 void Print(const Option_t *o, Option_t *) const { Print(o); } 42 void Print(const Option_t *o, Int_t) const { Print(o); } 43 void Print(const Option_t *o, const char*, Int_t) const { Print(o); } 44 void Print(const Option_t *o, TPRegexp&, Int_t) const { Print(o); } 42 45 43 46 TObject *FindObject(const char *object, const char *base) const;
Note:
See TracChangeset
for help on using the changeset viewer.