Ignore:
Timestamp:
10/24/01 13:57:43 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MParList.h

    r959 r984  
    2020#include "MParContainer.h"
    2121#endif
     22
     23#include <TObjArray.h>
    2224
    2325class MLog;
     
    4951    MParContainer *FindCreateObj(const char *classname, const char *objname=NULL);
    5052
    51     TObjArray FindObjectList(const char *name, const UInt_t from, const UInt_t to=0) const;
    52     TObjArray FindCreateObjList(const char *cname, const UInt_t from, const UInt_t to=0, const char *oname=NULL);
     53    TObjArray FindObjectList(const char *name, UInt_t first, const UInt_t last) const;
     54    TObjArray FindObjectList(const char *name, const UInt_t num) const
     55    {
     56        return FindObjectList(name, 0, num);
     57    }
    5358
    54     static TObjArray CreateObjList(const char *cname, const UInt_t from, const UInt_t to=0, const char *oname=NULL);
     59    TObjArray FindCreateObjList(const char *cname, UInt_t first, const UInt_t last, const char *oname=NULL);
     60    TObjArray FindCreateObjList(const char *cname, const UInt_t num, const char *oname=NULL)
     61    {
     62        return FindCreateObjList(cname, 0, num, oname);
     63    }
     64
     65    static TObjArray CreateObjList(const char *cname, UInt_t first, const UInt_t last, const char *oname=NULL);
     66    static TObjArray CreateObjList(const char *cname, const UInt_t num, const char *oname=NULL)
     67    {
     68        return CreateObjList(cname, 0, num, oname);
     69    }
    5570
    5671    void Reset();
Note: See TracChangeset for help on using the changeset viewer.