Changeset 330 in flair-src for trunk/lib/FlairSensorActuator/src/VrpnClient.h
- Timestamp:
- 09/25/19 15:29:26 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSensorActuator/src/VrpnClient.h
r309 r330 42 42 43 43 public: 44 typedef enum { Vrpn, VrpnLite, Xbee } ConnectionType_t; 45 44 46 /*! 45 47 * \brief Constructor 46 48 * 47 * Construct a VrpnClient. Connection is done by IP to a vrpn server .49 * Construct a VrpnClient. Connection is done by IP to a vrpn server or vrpnlite server (see tools/VrpnLite in flair-src) 48 50 * 49 51 * \param name name 50 52 * \param address server address 51 53 * \param priority priority of the Thread 54 * \param connection connection type: Vrpn or VrpnLite 52 55 */ 53 56 VrpnClient(std::string name, 54 std::string address, uint8_t priority); 55 56 /*! 57 * \brief Constructor 58 * 59 * Construct a VrpnClient. Connection is done by IP to a vrpn-lite server (see tools/VrpnLite in flair-src) 60 * 61 * \param name name 62 * \param port server port 63 * \param priority priority of the Thread 64 */ 65 VrpnClient(std::string name, 66 uint16_t port, uint8_t priority); 57 std::string address, uint8_t priority,ConnectionType_t connectionType=Vrpn); 67 58 68 59 /*! … … 100 91 gui::TabWidget *GetTabWidget(void) const; 101 92 102 typedef enum { Vrpn, VrpnLite, Xbee } ConnectionType_t;103 104 93 ConnectionType_t ConnectionType(void) const; 105 94
Note:
See TracChangeset
for help on using the changeset viewer.