summaryrefslogtreecommitdiffstats
path: root/src/server/events/Connect.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/events/Connect.hpp')
-rw-r--r--src/server/events/Connect.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/server/events/Connect.hpp b/src/server/events/Connect.hpp
index a84b9fcf..4b515087 100644
--- a/src/server/events/Connect.hpp
+++ b/src/server/events/Connect.hpp
@@ -45,12 +45,12 @@ namespace Events {
class Connect : public Event
{
public:
- Connect(Engine& engine,
- SharedPtr<Interface> client,
- int32_t id,
- SampleCount timestamp,
- const Raul::Path& tail,
- const Raul::Path& head);
+ Connect(Engine& engine,
+ SPtr<Interface> client,
+ int32_t id,
+ SampleCount timestamp,
+ const Raul::Path& tail,
+ const Raul::Path& head);
bool pre_process();
void execute(ProcessContext& context);
@@ -62,7 +62,7 @@ private:
GraphImpl* _graph;
InputPort* _head;
CompiledGraph* _compiled_graph;
- SharedPtr<ArcImpl> _arc;
+ SPtr<ArcImpl> _arc;
Raul::Array<BufferRef>* _buffers;
};