Changeset 8378 for trunk/MagicSoft/Cosy
- Timestamp:
- 03/14/07 19:19:45 (18 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r8377 r8378 10 10 gui/MGSkyPosition.cc, main/MBending.cc, main/MStargHistograms.cc, 11 11 base/coord.h, main/MCaos.cc, main/MCosy.cc, main/MPointing.cc, 12 main/MStarguider.cc, main/MTracking.cc: 12 main/MStarguider.cc, main/MTracking.cc, videodev/FilterLed.cc, 13 videodev/PixClient.cc, videodev/PngReader.cc, videodev/Writer.cc: 13 14 - replaced obsolete .h by C++ headers 14 15 - added namespace std … … 21 22 - fixed warning about overwriting of Print() 22 23 23 * base/MTimeout.cc, candrv/nodedrv.cc, devdrv/macs.cc: 24 - fixed default argument is declaration 24 * base/MTimeout.cc, candrv/nodedrv.cc, devdrv/macs.cc, 25 tcpip/MCeCoCom.cc: 26 - fixed default argument in declaration 25 27 26 28 * catalog/StarCatalog.cc, gui/MGAccuracy.cc, main/MCaos.[h,cc], … … 31 33 * gui/MGCoordinate.cc, gui/MGCosy.cc: 32 34 - fixed a warning about double declaration 35 36 * tcpip/MCeCoCom.h: 37 - renamed Send to SendRep 38 39 * tcpip/MDriveCom.cc: 40 - replaced Send by SendRep 41 42 * tcpip/MTcpIpIO.cc: 43 - added missing return 33 44 34 45 -
trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc
r6844 r8378 91 91 } 92 92 93 bool MCeCoCom::Send (const char *cmd, const char *str, bool force=kFALSE)93 bool MCeCoCom::SendRep(const char *cmd, const char *str, bool force) 94 94 { 95 95 MTime t; -
trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
r4865 r8378 49 49 } 50 50 51 bool Send (const char *cmd, const char *str, bool force);51 bool SendRep(const char *cmd, const char *str, bool force); 52 52 void SetStatus(Byte_t s) { fStatus=s; } 53 53 -
trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
r7788 r8378 262 262 str += txt.Print("%08.3f", er.Az()); 263 263 264 return Send ("DRIVE-REPORT", str, kFALSE);264 return SendRep("DRIVE-REPORT", str, kFALSE); 265 265 } 266 266 267 267 bool MDriveCom::SendStatus(const char *stat) 268 268 { 269 return Send ("DRIVE-STATUS", stat, kFALSE);269 return SendRep("DRIVE-STATUS", stat, kFALSE); 270 270 } 271 271 … … 302 302 str += txt.Print("%04d ", num); //number of detected stars 303 303 304 return Send ("STARG-REPORT", str, kTRUE);305 } 304 return SendRep("STARG-REPORT", str, kTRUE); 305 } -
trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
r7790 r8378 112 112 { 113 113 cout << "Rx: " << str << flush; 114 return true; 114 115 } 115 116 -
trunk/MagicSoft/Cosy/videodev/PixClient.cc
r1802 r8378 1 1 #include "PixClient.h" 2 2 3 #include <iostream.h> 3 #include <iostream> 4 5 using namespace std; 4 6 5 7 void PixClient::ProcessFrame(const unsigned long n, byte *img, -
trunk/MagicSoft/Cosy/videodev/PngReader.cc
r1804 r8378 2 2 #include "PixClient.h" 3 3 4 #include <iostream .h>4 #include <iostream> 5 5 #include <stdio.h> 6 6 #include <stdlib.h> … … 23 23 24 24 ClassImp(PngReader); 25 26 using namespace std; 25 27 26 28 char *PngReader::GetImg(unsigned int frame) -
trunk/MagicSoft/Cosy/videodev/Writer.cc
r4888 r8378 1 1 #include "Writer.h" 2 2 3 #include <iostream .h> // cout4 #include <fstream .h> // ofstream3 #include <iostream> // cout 4 #include <fstream> // ofstream 5 5 6 6 #include <stdio.h> // FILE … … 11 11 12 12 ClassImp(Writer); 13 14 using namespace std; 13 15 14 16 void Writer::Png(const char *fname, const byte *buf,
Note:
See TracChangeset
for help on using the changeset viewer.