Changeset 50 in flair-dev for trunk/include/FlairSensorActuator/HostEthController.h
- Timestamp:
- May 31, 2017, 3:54:26 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairSensorActuator/HostEthController.h
r13 r50 26 26 namespace flair { 27 27 namespace core { 28 class FrameworkManager;29 28 class cvmatrix; 30 29 class TcpSocket; 31 class Socket;30 class UdpSocket; 32 31 class Mutex; 33 32 } … … 56 55 class HostEthController : public core::Thread, public core::IODevice { 57 56 public: 58 HostEthController( const core::FrameworkManager *parent,std::string name,57 HostEthController(std::string name, 59 58 std::string address, int port, uint32_t period = 10, 60 59 uint32_t _bitsPerAxis = 7, uint8_t priority = 0); … … 65 64 std::string controllerName; 66 65 core::TcpSocket *controlSocket; // connection to the target 67 core:: Socket *dataSocket;66 core::UdpSocket *dataSocket; 68 67 std::string targetAddress; 69 68 int targetPort;
Note:
See TracChangeset
for help on using the changeset viewer.