Changeset 8810
- Timestamp:
- 01/16/08 10:00:23 (17 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r8809 r8810 13 13 performance, maintanance and reliability 14 14 - some updates for future code 15 16 * videodev/CaosFilter.h, videodev/FilterLed.h, videodev/PixClient.h, 17 videodev/PixGetter.h, videodev/Writer.h: 18 - added virtual destructor as suggested by gcc 4 15 19 16 20 -
trunk/MagicSoft/Cosy/candrv/sdolist.h
r2518 r8810 24 24 PendingSDO(BYTE_t n=0, WORD_t i=0, BYTE_t s=0) 25 25 : Node(n), Idx(i), Subidx(s), Next(NULL) {} 26 virtual ~PendingSDO() { } 26 27 27 28 ClassDef(PendingSDO, 0) -
trunk/MagicSoft/Cosy/videodev/FilterLed.h
r7794 r8810 48 48 { 49 49 } 50 virtual ~FilterLed() { } 50 51 51 52 void SetBox(int box) { fBox = box; } -
trunk/MagicSoft/Cosy/videodev/PixClient.h
r1802 r8810 15 15 { 16 16 public: 17 virtual ~PixClient() { } 17 18 virtual void ProcessFrame(const unsigned long n, 18 19 byte *img, struct timeval *tm); -
trunk/MagicSoft/Cosy/videodev/PixGetter.h
r4076 r8810 7 7 virtual ~PixGetter() { } 8 8 virtual void ExitLoop() {} 9 virtual void SetChannel(int) { } 9 10 }; 10 11 -
trunk/MagicSoft/Cosy/videodev/Writer.h
r4888 r8810 20 20 { 21 21 public: 22 virtual ~Writer() { } 22 23 23 24 static void Ppm(const char *fname, const byte *img, struct timeval *date, const XY xy);
Note:
See TracChangeset
for help on using the changeset viewer.