Skip to content
Snippets Groups Projects
Commit 9ce93392 authored by Timo Weberruß's avatar Timo Weberruß
Browse files

Fix destructors

parent 80d26435
No related branches found
No related tags found
2 merge requests!109Social layers,!55Draft: Implement human grouping
This commit is part of merge request !109. Comments created here will be created in the context of that merge request.
......@@ -36,7 +36,8 @@ namespace armarx::navigation::human
class ConvexHullGenerator : public GroupShapeGenerator
{
public:
ConvexHullGenerator();
ConvexHullGenerator() = default;
virtual ~ConvexHullGenerator() = default;
shapes::Polygon createShape(const HumanGroup& group) const override;
};
......
......@@ -35,8 +35,8 @@ namespace armarx::navigation::human
class DistanceFunction
{
public:
DistanceFunction();
virtual ~DistanceFunction();
DistanceFunction() = default;
virtual ~DistanceFunction() = default;
/**
* @brief computeDistance computes the (semantic or literal, depending on the implementation) distance between the given humans
......
......@@ -2,6 +2,8 @@
namespace armarx::navigation::human
{
EuclideanDistance::EuclideanDistance() = default;
double
EuclideanDistance::computeDistance(const Human& h1, const Human& h2) const
{
......
......@@ -33,8 +33,8 @@ namespace armarx::navigation::human
class GroupShapeGenerator
{
public:
GroupShapeGenerator();
virtual ~GroupShapeGenerator();
GroupShapeGenerator() = default;
virtual ~GroupShapeGenerator() = default;
/**
* @brief createShape creates and returns the shape describing the given group
......
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