Index: trunk/Mars/mbase/MLut.h
===================================================================
--- trunk/Mars/mbase/MLut.h	(revision 14446)
+++ trunk/Mars/mbase/MLut.h	(revision 14447)
@@ -48,6 +48,6 @@
 
     // MLut I/O
-    Int_t ReadStream(istream &in);
-    Int_t WriteStream(ostream &out) const;
+    Int_t ReadStream(std::istream &in);
+    Int_t WriteStream(std::ostream &out) const;
 
     Int_t ReadFile(const char *fname);
Index: trunk/Mars/mbase/MReadSocket.h
===================================================================
--- trunk/Mars/mbase/MReadSocket.h	(revision 14446)
+++ trunk/Mars/mbase/MReadSocket.h	(revision 14447)
@@ -34,5 +34,5 @@
 public:
     MReadSocket(int port=-1, int mtu=1500);
-    MReadSocket(MReadSocket const& log) : std::ios(), std::streambuf(), istream((std::streambuf*)&log)
+    MReadSocket(MReadSocket const& log) : std::ios(), std::streambuf(), std::istream((std::streambuf*)&log)
     {
     }
Index: trunk/Mars/mbase/MTask.h
===================================================================
--- trunk/Mars/mbase/MTask.h	(revision 14446)
+++ trunk/Mars/mbase/MTask.h	(revision 14447)
@@ -120,6 +120,6 @@
     virtual Int_t CallPostProcess();
 
-    void SavePrimitive(ostream &out, Option_t *o="");
-    void SavePrimitive(ofstream &out, Option_t *o="");
+    void SavePrimitive(std::ostream &out, Option_t *o="");
+    void SavePrimitive(std::ofstream &out, Option_t *o="");
 
     // TObject
Index: trunk/Mars/mbase/MTaskList.h
===================================================================
--- trunk/Mars/mbase/MTaskList.h	(revision 14446)
+++ trunk/Mars/mbase/MTaskList.h	(revision 14447)
@@ -34,5 +34,5 @@
 
     void   Remove(MTask *task);
-    void   StreamPrimitive(ostream &out) const;
+    void   StreamPrimitive(std::ostream &out) const;
     Bool_t CheckAddToList(MTask *task, /*const char *tType,*/ const MTask *where=NULL) const;
     Int_t  ProcessTaskList();
