Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//=============================================================================
#include "LibItsCam_TestSystem.hh"
namespace LibItsCam__TestSystem {
class UpperTesterPort : public UpperTesterPort_BASE {
public:
UpperTesterPort(const char *par_port_name = NULL);
~UpperTesterPort();
void set_parameter(const char *parameter_name,
const char *parameter_value);
private:
/* void Handle_Fd_Event(int fd, boolean is_readable,
boolean is_writable, boolean is_error); */
void Handle_Fd_Event_Error(int fd);
void Handle_Fd_Event_Writable(int fd);
void Handle_Fd_Event_Readable(int fd);
/* void Handle_Timeout(double time_since_last_call); */
protected:
void user_map(const char *system_port);
void user_unmap(const char *system_port);
void user_start();
void user_stop();
void outgoing_send(const LibItsCommon__TypesAndValues::UtInitialize& send_par);
void outgoing_send(const LibItsCam__TypesAndValues::UtCamTrigger& send_par);
void outgoing_send(const LibItsCommon__TypesAndValues::UtChangePosition& send_par);
void outgoing_send(const LibItsCommon__TypesAndValues::UtActivatePositionTime& send_par);
void outgoing_send(const LibItsCommon__TypesAndValues::UtDeactivatePositionTime& send_par);
};
} /* end of namespace */