2015-03-23 21:03:14 +00:00
|
|
|
#ifndef SATGRAPHICSCOMM_HH
|
|
|
|
#define SATGRAPHICSCOMM_HH
|
2015-02-26 15:02:31 +00:00
|
|
|
/********************************* TRICK HEADER *******************************
|
|
|
|
PURPOSE:
|
|
|
|
()
|
|
|
|
LIBRARY DEPENDENCY:
|
|
|
|
((../src/SatGraphicsComm.cpp))
|
|
|
|
PROGRAMMERS:
|
|
|
|
(((John M. Penn) () () () ))
|
|
|
|
*******************************************************************************/
|
|
|
|
#include "trick_utils/comm/include/tc_proto.h"
|
|
|
|
#include "Satellite.hh"
|
|
|
|
|
|
|
|
class SatGraphicsComm {
|
|
|
|
public:
|
|
|
|
|
|
|
|
SatGraphicsComm();
|
|
|
|
|
|
|
|
int connect();
|
|
|
|
int send_packet(Satellite* sat);
|
|
|
|
|
|
|
|
TCDevice connection;
|
|
|
|
char* syscmd;
|
|
|
|
};
|
|
|
|
#endif
|