mirror of
https://github.com/nasa/trick.git
synced 2025-01-07 13:48:43 +00:00
26 lines
599 B
C++
26 lines
599 B
C++
|
#ifndef _SAT_GRAPHICS_COMM_H_
|
||
|
#define _SAT_GRAPHICS_COMM_H_
|
||
|
/********************************* 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
|