summaryrefslogtreecommitdiffstats
path: root/src/server/events/CreatePort.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 15:39:43 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 15:39:43 +0200
commitb979d48b8570610db121cabc6352a47145922f27 (patch)
tree859803be21f10398bd9cf06d04426bacc5c2ac73 /src/server/events/CreatePort.hpp
parentbdbdf42f3fe990c713c5437724db39274c387eee (diff)
downloadingen-b979d48b8570610db121cabc6352a47145922f27.tar.gz
ingen-b979d48b8570610db121cabc6352a47145922f27.tar.bz2
ingen-b979d48b8570610db121cabc6352a47145922f27.zip
Remove Raul::managed_ptr alias
Diffstat (limited to 'src/server/events/CreatePort.hpp')
-rw-r--r--src/server/events/CreatePort.hpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/server/events/CreatePort.hpp b/src/server/events/CreatePort.hpp
index c0f57655..f1b278d5 100644
--- a/src/server/events/CreatePort.hpp
+++ b/src/server/events/CreatePort.hpp
@@ -21,8 +21,8 @@
#include "Event.hpp"
#include "PortType.hpp"
-#include "ingen/memory.hpp"
#include "lv2/urid/urid.h"
+#include "raul/Maid.hpp"
#include "raul/Path.hpp"
#include <boost/optional/optional.hpp>
@@ -64,16 +64,16 @@ private:
OUTPUT
};
- Raul::Path _path;
- PortType _port_type;
- LV2_URID _buf_type;
- GraphImpl* _graph;
- DuplexPort* _graph_port;
- MPtr<BlockImpl::Ports> _ports_array; ///< New external port array for Graph
- EnginePort* _engine_port; ///< Driver port if on the root
- Properties _properties;
- Properties _update;
- boost::optional<Flow> _flow;
+ Raul::Path _path;
+ PortType _port_type;
+ LV2_URID _buf_type;
+ GraphImpl* _graph;
+ DuplexPort* _graph_port;
+ Raul::managed_ptr<BlockImpl::Ports> _ports_array; ///< New external port array for Graph
+ EnginePort* _engine_port; ///< Driver port if on the root
+ Properties _properties;
+ Properties _update;
+ boost::optional<Flow> _flow;
};
} // namespace events