#include <TIntList.h>
Public Member Functions | |
| TObjNum (Int_t i=0) | |
| ~TObjNum () | |
| virtual void | SetNum (Int_t i) |
| virtual Int_t | GetNum () const |
| void | Print (Option_t *="") const |
| Bool_t | IsEqual (const TObject *obj) const |
| Bool_t | IsSortable () const |
| virtual Int_t | Compare (const TObject *obj) const |
Private Attributes | |
| Int_t | num |
|
|
Definition at line 16 of file TIntList.h. References num. 00016 : num(i) { }
|
|
|
Definition at line 17 of file TIntList.h. 00017 { }
|
|
|
Definition at line 29 of file TIntList.h. References num. 00030 { if (num > ((TObjNum*)obj)->GetNum())
00031 return 1;
00032 else if (num < ((TObjNum*)obj)->GetNum())
00033 return -1;
00034 else return 0; }
|
|
|
Definition at line 20 of file TIntList.h. Referenced by TIntList::Exists(), and TIntList::Remove(). 00020 { return num; }
|
|
|
Definition at line 24 of file TIntList.h. References num.
|
|
|
Definition at line 27 of file TIntList.h. 00027 { return kTRUE; }
|
|
|
Definition at line 22 of file TIntList.h. References num. 00022 { cout << num << endl; }
|
|
|
Definition at line 19 of file TIntList.h. References num. 00019 { num = i; }
|
|
|
Definition at line 13 of file TIntList.h. Referenced by Compare(), IsEqual(), Print(), SetNum(), and TObjNum(). |
1.3.9.1