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

forward decl

parent 09660b81
No related branches found
No related tags found
1 merge request!128Resolve "Add Object Memory"
......@@ -6,7 +6,6 @@ namespace armarx::objpose
{
void fromAron(const auto& aronObjectPose, const ObjectPose& objectPose)
{
}
......
......@@ -5,7 +5,11 @@ namespace armarx::objpose
{
struct ObjectPose;
void fromAron(const auto& aronObjectPose, const ObjectPose& objectPose);
void toAron(const auto& aronObjectPose, ObjectPose& objectPose);
namespace aron {
struct ObjectPose;
}
void fromAron(const aron::ObjectPose& aronObjectPose, const ObjectPose& objectPose);
void toAron(const aron::ObjectPose& aronObjectPose, ObjectPose& objectPose);
} // namespace armarx::objpose
\ No newline at end of file
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