trick/trick_models/Satellite/include/SatGraphicsComm.hh

26 lines
593 B
C++
Raw Normal View History

#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