summaryrefslogtreecommitdiffstats
path: root/src/gui/Arc.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/Arc.hpp')
-rw-r--r--src/gui/Arc.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/Arc.hpp b/src/gui/Arc.hpp
index df6dfbfb..52a03a23 100644
--- a/src/gui/Arc.hpp
+++ b/src/gui/Arc.hpp
@@ -20,7 +20,7 @@
#include <cassert>
#include "ganv/Edge.hpp"
-#include "raul/SharedPtr.hpp"
+#include "ingen/types.hpp"
namespace Ingen {
@@ -35,16 +35,16 @@ namespace GUI {
class Arc : public Ganv::Edge
{
public:
- Arc(Ganv::Canvas& canvas,
- boost::shared_ptr<const Client::ArcModel> model,
- Ganv::Node* src,
- Ganv::Node* dst,
- uint32_t color);
+ Arc(Ganv::Canvas& canvas,
+ SPtr<const Client::ArcModel> model,
+ Ganv::Node* src,
+ Ganv::Node* dst,
+ uint32_t color);
- SharedPtr<const Client::ArcModel> model() const { return _arc_model; }
+ SPtr<const Client::ArcModel> model() const { return _arc_model; }
private:
- SharedPtr<const Client::ArcModel> _arc_model;
+ SPtr<const Client::ArcModel> _arc_model;
};
} // namespace GUI