Index: trunk/MagicSoft/Cosy/Changelog
===================================================================
--- trunk/MagicSoft/Cosy/Changelog	(revision 8377)
+++ trunk/MagicSoft/Cosy/Changelog	(revision 8378)
@@ -10,5 +10,6 @@
      gui/MGSkyPosition.cc, main/MBending.cc, main/MStargHistograms.cc,
      base/coord.h, main/MCaos.cc, main/MCosy.cc, main/MPointing.cc,
-     main/MStarguider.cc, main/MTracking.cc:
+     main/MStarguider.cc, main/MTracking.cc, videodev/FilterLed.cc,
+     videodev/PixClient.cc, videodev/PngReader.cc, videodev/Writer.cc:
      - replaced obsolete .h by C++ headers
      - added namespace std
@@ -21,6 +22,7 @@
      - fixed warning about overwriting of Print()
 
-   * base/MTimeout.cc, candrv/nodedrv.cc, devdrv/macs.cc:
-     - fixed default argument is declaration
+   * base/MTimeout.cc, candrv/nodedrv.cc, devdrv/macs.cc,
+     tcpip/MCeCoCom.cc:
+     - fixed default argument in declaration
 
    * catalog/StarCatalog.cc, gui/MGAccuracy.cc, main/MCaos.[h,cc],
@@ -31,4 +33,13 @@
    * gui/MGCoordinate.cc, gui/MGCosy.cc:
      - fixed a warning about double declaration
+
+   * tcpip/MCeCoCom.h:
+     - renamed Send to SendRep
+
+   * tcpip/MDriveCom.cc:
+     - replaced Send by SendRep
+
+   * tcpip/MTcpIpIO.cc:
+     - added missing return
 
 
Index: trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc	(revision 8377)
+++ trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc	(revision 8378)
@@ -91,5 +91,5 @@
 }
 
-bool MCeCoCom::Send(const char *cmd, const char *str, bool force=kFALSE)
+bool MCeCoCom::SendRep(const char *cmd, const char *str, bool force)
 {
     MTime t;
Index: trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 8377)
+++ trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 8378)
@@ -49,5 +49,5 @@
     }
 
-    bool Send(const char *cmd, const char *str, bool force);
+    bool SendRep(const char *cmd, const char *str, bool force);
     void SetStatus(Byte_t s) { fStatus=s; }
 
Index: trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 8377)
+++ trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc	(revision 8378)
@@ -262,10 +262,10 @@
     str += txt.Print("%08.3f", er.Az());
 
-    return Send("DRIVE-REPORT", str, kFALSE);
+    return SendRep("DRIVE-REPORT", str, kFALSE);
 }
 
 bool MDriveCom::SendStatus(const char *stat)
 {
-    return Send("DRIVE-STATUS", stat, kFALSE);
+    return SendRep("DRIVE-STATUS", stat, kFALSE);
 }
 
@@ -302,4 +302,4 @@
     str += txt.Print("%04d ", num);               //number of detected stars
 
-    return Send("STARG-REPORT", str, kTRUE);
-}
+    return SendRep("STARG-REPORT", str, kTRUE);
+}
Index: trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 8377)
+++ trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 8378)
@@ -112,4 +112,5 @@
 {
     cout << "Rx: " << str << flush;
+    return true;
 }
 
Index: trunk/MagicSoft/Cosy/videodev/PixClient.cc
===================================================================
--- trunk/MagicSoft/Cosy/videodev/PixClient.cc	(revision 8377)
+++ trunk/MagicSoft/Cosy/videodev/PixClient.cc	(revision 8378)
@@ -1,5 +1,7 @@
 #include "PixClient.h"
 
-#include <iostream.h>
+#include <iostream>
+
+using namespace std;
 
 void PixClient::ProcessFrame(const unsigned long n, byte *img,
Index: trunk/MagicSoft/Cosy/videodev/PngReader.cc
===================================================================
--- trunk/MagicSoft/Cosy/videodev/PngReader.cc	(revision 8377)
+++ trunk/MagicSoft/Cosy/videodev/PngReader.cc	(revision 8378)
@@ -2,5 +2,5 @@
 #include "PixClient.h"
 
-#include <iostream.h>
+#include <iostream>
 #include <stdio.h>
 #include <stdlib.h>
@@ -23,4 +23,6 @@
 
 ClassImp(PngReader);
+
+using namespace std;
 
 char *PngReader::GetImg(unsigned int frame)
Index: trunk/MagicSoft/Cosy/videodev/Writer.cc
===================================================================
--- trunk/MagicSoft/Cosy/videodev/Writer.cc	(revision 8377)
+++ trunk/MagicSoft/Cosy/videodev/Writer.cc	(revision 8378)
@@ -1,6 +1,6 @@
 #include "Writer.h"
 
-#include <iostream.h> // cout
-#include <fstream.h>  // ofstream
+#include <iostream> // cout
+#include <fstream>  // ofstream
 
 #include <stdio.h>    // FILE
@@ -11,4 +11,6 @@
 
 ClassImp(Writer);
+
+using namespace std;
 
 void Writer::Png(const char *fname, const byte *buf,
