From a69e10a438e6a5903abe5e3c0f435591a113237c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 19 Feb 2011 09:20:48 +0000 Subject: Tidy. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2997 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientStore.hpp | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) (limited to 'src/client/ClientStore.hpp') diff --git a/src/client/ClientStore.hpp b/src/client/ClientStore.hpp index a3928760..c7448f7c 100644 --- a/src/client/ClientStore.hpp +++ b/src/client/ClientStore.hpp @@ -19,14 +19,17 @@ #define INGEN_CLIENT_CLIENTSTORE_HPP #include -#include #include +#include + #include "raul/SharedPtr.hpp" + #include + +#include "interface/EngineInterface.hpp" #include "raul/Path.hpp" #include "raul/PathTable.hpp" #include "raul/TableImpl.hpp" -#include "interface/EngineInterface.hpp" #include "shared/Store.hpp" namespace Raul { class Atom; } @@ -37,24 +40,25 @@ namespace Shared { class GraphObject; } namespace Client { -class SigClientInterface; +class NodeModel; class ObjectModel; -class PluginModel; class PatchModel; -class NodeModel; +class PluginModel; class PortModel; -class ConnectionModel; - +class SigClientInterface; /** Automatically manages models of objects in the engine. * * \ingroup IngenClient */ -class ClientStore : public Shared::Store, public Shared::CommonInterface, public sigc::trackable { +class ClientStore : public Shared::Store + , public Shared::CommonInterface + , public sigc::trackable { public: - ClientStore(SharedPtr uris, - SharedPtr engine=SharedPtr(), - SharedPtr emitter=SharedPtr()); + ClientStore( + SharedPtr uris, + SharedPtr engine=SharedPtr(), + SharedPtr emitter=SharedPtr()); SharedPtr plugin(const Raul::URI& uri); SharedPtr object(const Raul::Path& path); @@ -106,7 +110,8 @@ private: void add_plugin(SharedPtr plugin); - SharedPtr connection_patch(const Raul::Path& src_port_path, const Raul::Path& dst_port_path); + SharedPtr connection_patch(const Raul::Path& src_port_path, + const Raul::Path& dst_port_path); void bundle_begin() {} void bundle_end() {} @@ -115,7 +120,8 @@ private: void object_moved(const Raul::Path& old_path, const Raul::Path& new_path); void activity(const Raul::Path& path); - bool attempt_connection(const Raul::Path& src_port_path, const Raul::Path& dst_port_path); + bool attempt_connection(const Raul::Path& src_port_path, + const Raul::Path& dst_port_path); SharedPtr _uris; SharedPtr _engine; @@ -124,7 +130,6 @@ private: SharedPtr _plugins; ///< Map, keyed by plugin URI }; - } // namespace Client } // namespace Ingen -- cgit v1.2.1