Changeset 1273 for trunk/MagicSoft/Cosy/base
- Timestamp:
- 04/11/02 13:20:10 (23 years ago)
- Location:
- trunk/MagicSoft/Cosy/base
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/base/MThread.cc
r910 r1273 10 10 // Starts the derived thread if you don't specify false. 11 11 // 12 MThread::MThread(bool start ) : fIsRunning(false), fIsDetached(false), fThread(NULL), fReturn(NULL), fPriority(0)12 MThread::MThread(bool start, int prio) : fIsRunning(false), fIsDetached(false), fThread(NULL), fReturn(NULL) 13 13 { 14 14 if (start) 15 { 16 SetPriority(prio); 15 17 Start(); 18 } 16 19 } 17 20 -
trunk/MagicSoft/Cosy/base/MThread.h
r1111 r1273 26 26 27 27 public: 28 MThread(bool start=true );28 MThread(bool start=true, int prio=0); 29 29 virtual ~MThread(); 30 30 -
trunk/MagicSoft/Cosy/base/coord.h
r1109 r1273 118 118 double Dec() const { return fY; } 119 119 120 void Ra(double x) { fX = x; } 121 void Dec(double y) { fY = y; } 122 120 123 RaDec operator/(double c) const { return RaDec(fX/c, fY/c); } 121 124 RaDec operator*(double c) const { return RaDec(fX*c, fY*c); } -
trunk/MagicSoft/Cosy/base/msgqueue.cc
r1266 r1273 57 57 58 58 fRc=Proc(fMsg, fMp); 59 60 if (fMsg==WM_QUIT) 61 break; 62 59 63 } 60 64 } -
trunk/MagicSoft/Cosy/base/msgqueue.h
r1109 r1273 5 5 6 6 #define WM_NULL 0x0000 7 #define WM_QUIT 0xffff 7 8 8 9 class MsgQueue
Note:
See TracChangeset
for help on using the changeset viewer.