//////////////////////////////////////////////////////////////////////// // class CTelemetry // // $Log: telemetry.h,v $ // Revision 1.2 1997/07/23 18:29:09 nettleto // Set stack size to 4096 words. // // Revision 1.1 1997/06/13 18:13:51 nettleto // Initial revision // // #ifndef TELEMETRY_H #define TELEMETRY_H #include "thread.h" #include "tcu.h" #include "reader.h" class CTelemetry : public CThread { protected: // attributes int nTCU; CTCU **pTCU; CReader *rdr; public: // Constructors CTelemetry (CReader *ardr, int n, CTCU *tcu []) : CThread (4096) { rdr = ardr; nTCU = n; pTCU = tcu; }; protected: void Body (); }; #endif // TELEMETRY_H