Changeset 14447 for trunk/Mars/mbase


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

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mbase/MLut.h

    r9490 r14447  
    4848
    4949    // MLut I/O
    50     Int_t ReadStream(istream &in);
    51     Int_t WriteStream(ostream &out) const;
     50    Int_t ReadStream(std::istream &in);
     51    Int_t WriteStream(std::ostream &out) const;
    5252
    5353    Int_t ReadFile(const char *fname);
  • trunk/Mars/mbase/MReadSocket.h

    r7808 r14447  
    3434public:
    3535    MReadSocket(int port=-1, int mtu=1500);
    36     MReadSocket(MReadSocket const& log) : std::ios(), std::streambuf(), istream((std::streambuf*)&log)
     36    MReadSocket(MReadSocket const& log) : std::ios(), std::streambuf(), std::istream((std::streambuf*)&log)
    3737    {
    3838    }
  • trunk/Mars/mbase/MTask.h

    r9578 r14447  
    120120    virtual Int_t CallPostProcess();
    121121
    122     void SavePrimitive(ostream &out, Option_t *o="");
    123     void SavePrimitive(ofstream &out, Option_t *o="");
     122    void SavePrimitive(std::ostream &out, Option_t *o="");
     123    void SavePrimitive(std::ofstream &out, Option_t *o="");
    124124
    125125    // TObject
  • trunk/Mars/mbase/MTaskList.h

    r8642 r14447  
    3434
    3535    void   Remove(MTask *task);
    36     void   StreamPrimitive(ostream &out) const;
     36    void   StreamPrimitive(std::ostream &out) const;
    3737    Bool_t CheckAddToList(MTask *task, /*const char *tType,*/ const MTask *where=NULL) const;
    3838    Int_t  ProcessTaskList();
Note: See TracChangeset for help on using the changeset viewer.