Changeset 14447 for trunk/Mars/mfileio


Ignore:
Timestamp:
10/02/12 11:44:41 (13 years ago)
Author:
tbretz
Message:
Added some missing std::
Location:
trunk/Mars/mfileio
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mfileio/MReadTree.h

    r9036 r14447  
    5656
    5757    virtual void SetReadyToSave(Bool_t flag=kTRUE);
    58     virtual void StreamPrimitive(ostream &out) const;
     58    virtual void StreamPrimitive(std::ostream &out) const;
    5959
    6060    enum { kIsOwner = BIT(14) };
  • trunk/Mars/mfileio/MWriteAsciiFile.h

    r4694 r14447  
    1414{
    1515private:
    16     ofstream *fOut;    //! ascii file
     16    std::ofstream *fOut; //! ascii file
    1717
    18     TString fNameFile;  // name of the ascii file
     18    TString fNameFile;   // name of the ascii file
    1919
    20     TObjArray fList;    // list of rules and containers to be written
    21     TObjArray fAutoDel; //! List of object to be deleted in the destructor
     20    TObjArray fList;     // list of rules and containers to be written
     21    TObjArray fAutoDel;  //! List of object to be deleted in the destructor
    2222
    2323    virtual Bool_t CheckAndWrite();
  • trunk/Mars/mfileio/MWriteRootFile.h

    r9410 r14447  
    108108    // MTask
    109109    Bool_t ReInit(MParList *pList);
    110     void   StreamPrimitive(ostream &out) const;
     110    void   StreamPrimitive(std::ostream &out) const;
    111111
    112112    // Constructor
Note: See TracChangeset for help on using the changeset viewer.