source: trunk/MagicSoft/Mars/mbase/MArgs.h@ 6276

Last change on this file since 6276 was 4766, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 1.6 KB
Line 
1#ifndef MARS_MArgs
2#define MARS_MArgs
3
4#ifndef ROOT_TNamed
5#include <TNamed.h>
6#endif
7
8#ifndef ROOT_TList
9#include <TList.h>
10#endif
11
12class MArgsEntry : public TString, public TObject
13{
14public:
15 MArgsEntry(const char *c) : TString(c), TObject() {}
16
17 void Print(const Option_t *o) const;
18
19 ClassDef(MArgsEntry, 0)
20};
21
22class MArgs : public TNamed
23{
24private:
25 Int_t fArgc;
26 TList *fArgv; //->
27
28public:
29 MArgs(int argc, char **argv, Bool_t root=kFALSE);
30 ~MArgs();
31
32 void Print(const Option_t *o="") const;
33
34 // FIXME: Add max, min option
35 // FIXME: Add default option
36
37 Int_t GetInt(const TString name) const;
38 Double_t GetFloat(const TString name) const;
39 TString GetString(const TString name) const;
40
41 Int_t GetIntAndRemove(const TString name);
42 Double_t GetFloatAndRemove(const TString name);
43 TString GetStringAndRemove(const TString name);
44
45 Int_t GetIntAndRemove(const TString name, Int_t def);
46 Double_t GetFloatAndRemove(const TString name, Double_t def);
47 TString GetStringAndRemove(const TString name, const TString def);
48
49 Bool_t Has(const TString name) const;
50 Bool_t HasOnly(const TString name) const;
51 Bool_t HasOption(const TString name) const;
52 Bool_t HasOnlyAndRemove(const TString name);
53
54 TString GetArgumentStr(Int_t i) const;
55 Int_t GetArgumentInt(Int_t i) const;
56 Float_t GetArgumentFloat(Int_t i) const;
57 Int_t GetNumArguments() const;
58 Int_t GetNumOptions() const;
59 Int_t GetNumEntries() const;
60
61 ClassDef(MArgs, 0) //Class to parse command line arguments
62};
63
64#endif
Note: See TracBrowser for help on using the repository browser.