diff options
Diffstat (limited to 'ingen/Edge.hpp')
-rw-r--r-- | ingen/Edge.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ingen/Edge.hpp b/ingen/Edge.hpp index 74a544e8..a586783b 100644 --- a/ingen/Edge.hpp +++ b/ingen/Edge.hpp @@ -17,6 +17,8 @@ #ifndef INGEN_EDGE_HPP #define INGEN_EDGE_HPP +#include "raul/Deletable.hpp" + namespace Raul { class Path; } namespace Ingen { @@ -25,11 +27,9 @@ namespace Ingen { * * @ingroup Ingen */ -class Edge +class Edge : public Raul::Deletable { public: - virtual ~Edge() {} - virtual const Raul::Path& tail_path() const = 0; virtual const Raul::Path& head_path() const = 0; }; |