Changeset 309 in flair-src for trunk/lib/FlairSensorActuator/src/VrpnClient.h
- Timestamp:
- Mar 13, 2019, 4:40:18 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSensorActuator/src/VrpnClient.h
r136 r309 45 45 * \brief Constructor 46 46 * 47 * Construct a VrpnClient. Connection is done by IP .47 * Construct a VrpnClient. Connection is done by IP to a vrpn server. 48 48 * 49 49 * \param name name … … 54 54 std::string address, uint8_t priority); 55 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); 67 56 68 /*! 57 69 * \brief Constructor … … 87 99 */ 88 100 gui::TabWidget *GetTabWidget(void) const; 89 90 /*! 91 * \brief Is XBee used? 92 * 93 * \return true if connection is based on XBee modem 94 */ 95 bool UseXbee(void) const; 101 102 typedef enum { Vrpn, VrpnLite, Xbee } ConnectionType_t; 103 104 ConnectionType_t ConnectionType(void) const; 96 105 97 106 private:
Note:
See TracChangeset
for help on using the changeset viewer.