Changeset 14447 for trunk/Mars/mfileio
- Timestamp:
- 10/02/12 11:44:41 (13 years ago)
- Location:
- trunk/Mars/mfileio
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mfileio/MReadTree.h
r9036 r14447 56 56 57 57 virtual void SetReadyToSave(Bool_t flag=kTRUE); 58 virtual void StreamPrimitive( ostream &out) const;58 virtual void StreamPrimitive(std::ostream &out) const; 59 59 60 60 enum { kIsOwner = BIT(14) }; -
trunk/Mars/mfileio/MWriteAsciiFile.h
r4694 r14447 14 14 { 15 15 private: 16 ofstream *fOut;//! ascii file16 std::ofstream *fOut; //! ascii file 17 17 18 TString fNameFile; // name of the ascii file18 TString fNameFile; // name of the ascii file 19 19 20 TObjArray fList; // list of rules and containers to be written21 TObjArray fAutoDel; //! List of object to be deleted in the destructor20 TObjArray fList; // list of rules and containers to be written 21 TObjArray fAutoDel; //! List of object to be deleted in the destructor 22 22 23 23 virtual Bool_t CheckAndWrite(); -
trunk/Mars/mfileio/MWriteRootFile.h
r9410 r14447 108 108 // MTask 109 109 Bool_t ReInit(MParList *pList); 110 void StreamPrimitive( ostream &out) const;110 void StreamPrimitive(std::ostream &out) const; 111 111 112 112 // Constructor
Note:
See TracChangeset
for help on using the changeset viewer.