Skip to content
This repository was archived by the owner on Feb 21, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/libs/parallelIce/cameraClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <fstream>
#include <climits>
#include <logger/Logger.h>
#include <boost/shared_ptr.hpp>

namespace jderobot {

Expand Down Expand Up @@ -75,5 +76,7 @@ class cameraClient: public IceUtil::Thread {

};

typedef boost::shared_ptr<cameraClient> CameraClientPtr;

} /* namespace jderobot */
#endif /* CAMERACLIENT_H_ */
2 changes: 2 additions & 0 deletions src/libs/parallelIce/laserClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <sstream>
#include <fstream>
#include <logger/Logger.h>
#include <boost/shared_ptr.hpp>

namespace jderobot {

Expand Down Expand Up @@ -62,6 +63,7 @@ class laserClient: public IceUtil::Thread {
IceUtil::Cond sem;

};
typedef boost::shared_ptr<laserClient> LaserClientPtr;


} /* namespace jderobot */
Expand Down
3 changes: 3 additions & 0 deletions src/libs/parallelIce/motorsClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <sstream>
#include <fstream>
#include <logger/Logger.h>
#include <boost/shared_ptr.hpp>

namespace jderobot {

Expand Down Expand Up @@ -64,6 +65,8 @@ class motorsClient {

};

typedef boost::shared_ptr<motorsClient> MotorsClientPtr;


} /* namespace jderobot */
#endif /* LASERCLIENT_H_ */
4 changes: 4 additions & 0 deletions src/libs/parallelIce/pointcloudClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <sstream>
#include <fstream>
#include <logger/Logger.h>
#include <boost/shared_ptr.hpp>

namespace jderobot {

Expand Down Expand Up @@ -67,5 +68,8 @@ class pointcloudClient: public IceUtil::Thread {

};

typedef boost::shared_ptr<pointcloudClient> PointcloudClientPtr;


} /* namespace jderobot */
#endif /* POINTCLOUDCLIENT_H_ */