From ab2aa4d4922ab1a62b7a43013d09b2d9d144b3c5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 15 Aug 2008 23:34:41 +0000 Subject: Push serialiser down into core ('world'). HTTP access to patches (serialised on demand). git-svn-id: http://svn.drobilla.net/lad/ingen@1393 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/PortModel.hpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/libs/client/PortModel.hpp') diff --git a/src/libs/client/PortModel.hpp b/src/libs/client/PortModel.hpp index a452c338..3739be58 100644 --- a/src/libs/client/PortModel.hpp +++ b/src/libs/client/PortModel.hpp @@ -71,15 +71,15 @@ public: sigc::signal > signal_disconnection; private: - friend class Store; + friend class ClientStore; - PortModel(Store& store, const Path& path, uint32_t index, DataType type, Direction dir) - : ObjectModel(store, path, true), - _index(index), - _type(type), - _direction(dir), - _current_val(0.0f), - _connections(0) + PortModel(const Path& path, uint32_t index, DataType type, Direction dir) + : ObjectModel(path, true) + , _index(index) + , _type(type) + , _direction(dir) + , _current_val(0.0f) + , _connections(0) { if (_type == DataType::UNKNOWN) std::cerr << "[PortModel] Warning: Unknown port type" << std::endl; -- cgit v1.2.1