Rework library without unix sockets for now
This commit is contained in:
parent
e9ae1a320a
commit
0bef6035ae
30 changed files with 987 additions and 136 deletions
24
server_v2/include/Odometry.hpp
Normal file
24
server_v2/include/Odometry.hpp
Normal file
|
@ -0,0 +1,24 @@
|
|||
#ifndef COMPLIB_SERVER_ODOMETRY_HPP
|
||||
#define COMPLIB_SERVER_ODOMETRY_HPP
|
||||
|
||||
class Odometry {
|
||||
|
||||
public:
|
||||
Odometry();
|
||||
|
||||
Odometry(double x_position, double y_position, double angular_orientation);
|
||||
|
||||
double get_x_position() const;
|
||||
|
||||
double get_y_position() const;
|
||||
|
||||
double get_angular_orientation() const;
|
||||
|
||||
|
||||
private:
|
||||
double x_position;
|
||||
double y_position;
|
||||
double angular_orientation;
|
||||
};
|
||||
|
||||
#endif //COMPLIB_SERVER_ODOMETRY_HPP
|
Reference in a new issue