Skip to content
This repository has been archived by the owner on Feb 21, 2021. It is now read-only.

Commit

Permalink
Merge pull request #716 from JdeRobot/frivas_parallelIcePtr
Browse files Browse the repository at this point in the history
#715 included parallelIce shared ptrs
  • Loading branch information
chanfr authored Mar 10, 2017
2 parents 7f41977 + 496ad57 commit 3e009a2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
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_ */

0 comments on commit 3e009a2

Please sign in to comment.