Changeset 1879 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 03/28/03 14:24:38 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParContainer.h
r1574 r1879 36 36 private: 37 37 enum { 38 kIsSavedAsPrimitive = BIT(15)38 kIsSavedAsPrimitive = BIT(15), 39 39 }; 40 40 … … 44 44 45 45 public: 46 enum { 47 kEnableGraphicalOutput = BIT(16) 48 }; 49 46 50 MParContainer(const char *name="", const char *title="") : fName(name), fTitle(title), fLog(&gLog), fReadyToSave(kFALSE) { } 47 51 MParContainer(const TString &name, const TString &title) : fName(name), fTitle(title), fLog(&gLog), fReadyToSave(kFALSE) { } … … 76 80 virtual void SetReadyToSave(Bool_t flag=kTRUE) { fReadyToSave=flag; } 77 81 virtual Bool_t IsSavedAsPrimitive() const { return TestBit(kIsSavedAsPrimitive); } 82 virtual void EnableGraphicalOutput(Bool_t flag=kTRUE) { flag ? SetBit(kEnableGraphicalOutput) : ResetBit(kEnableGraphicalOutput);} 83 virtual Bool_t IsGraphicalOutputEnabled() const { return TestBit(kEnableGraphicalOutput); } 78 84 79 85 TMethodCall *GetterMethod(const char *name) const; -
trunk/MagicSoft/Mars/mbase/MParList.h
r1524 r1879 36 36 37 37 public: 38 enum { kDoNotReset = BIT(1 5) };38 enum { kDoNotReset = BIT(17) }; 39 39 40 40 MParList(const char *name=NULL, const char *title=NULL);
Note:
See TracChangeset
for help on using the changeset viewer.