Skip to content
Snippets Groups Projects
Commit 227f9d22 authored by Fabian Reister's avatar Fabian Reister
Browse files

DSControllers: fixing compiler error: incomplete type; boost::shared_ptr

parent 07675846
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@
namespace armarx
{
typedef boost::shared_ptr<GMRDynamics> JointCarryGMMPtr;
using JointCarryGMMPtr = std::shared_ptr<GMRDynamics>;
struct JointCarryGMRParameters
{
......@@ -150,7 +150,7 @@ namespace armarx
};
typedef boost::shared_ptr<JointCarryGMMMotionGen> JointCarryGMMMotionGenPtr;
using JointCarryGMMMotionGenPtr = std::shared_ptr<JointCarryGMMMotionGen>;
class DSJointCarryControllerControlData
{
......
......@@ -56,7 +56,7 @@ namespace armarx
};
typedef boost::shared_ptr<GMRDynamics> BimanualGMMPtr;
using BimanualGMMPtr = std::shared_ptr<class GMRDynamics>;
struct BimanualGMRParameters
{
......@@ -291,7 +291,7 @@ namespace armarx
};
typedef boost::shared_ptr<BimanualGMMMotionGen> BimanualGMMMotionGenPtr;
using BimanualGMMMotionGenPtr = std::shared_ptr<BimanualGMMMotionGen>;
......
......@@ -46,7 +46,7 @@ namespace armarx
Eigen::Vector3f tcpDesiredAngularError;
};
typedef boost::shared_ptr<GMRDynamics> GMMPtr;
using GMMPtr = std::shared_ptr<GMRDynamics>;
struct GMRParameters
{
......@@ -155,7 +155,7 @@ namespace armarx
Eigen::Vector3f currentDesiredVelocity;
};
typedef boost::shared_ptr<GMMMotionGen> GMMMotionGenPtr;
using GMMMotionGenPtr = std::shared_ptr<GMMMotionGen>;
class DSAdaptor
{
......@@ -343,7 +343,234 @@ namespace armarx
}
};
typedef boost::shared_ptr<DSAdaptor> DSAdaptorPtr;
using DSAdaptorPtr = std::shared_ptr<DSAdaptor>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment