From e1a63732f796c8057751cb7f8ac98a595b91692e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 12 Jan 2013 03:17:47 +0000 Subject: Bulk reformat. git-svn-id: http://svn.drobilla.net/lad/trunk/machina@4929 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientObject.hpp | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'src/client/ClientObject.hpp') diff --git a/src/client/ClientObject.hpp b/src/client/ClientObject.hpp index 658d603..994a5ba 100644 --- a/src/client/ClientObject.hpp +++ b/src/client/ClientObject.hpp @@ -30,7 +30,8 @@ namespace Machina { namespace Client { -class ClientObject { +class ClientObject +{ public: ClientObject(uint64_t id); ClientObject(const ClientObject& copy, uint64_t id); @@ -42,7 +43,8 @@ public: sigc::signal signal_property; - class View { + class View + { public: virtual ~View() {} }; @@ -50,8 +52,8 @@ public: typedef std::map Properties; const Properties& properties() { return _properties; } - SharedPtr view() const { return _view; } - void set_view(SharedPtr view) { _view = view; } + SharedPtr view() const { return _view; } + void set_view(SharedPtr view) { _view = view; } private: uint64_t _id; @@ -60,9 +62,12 @@ private: Properties _properties; }; -class ClientObjectKey : public ClientObject { +class ClientObjectKey + : public ClientObject +{ public: - ClientObjectKey(uint64_t id) : ClientObject(id) {} + ClientObjectKey(uint64_t id) + : ClientObject(id) {} }; } -- cgit v1.2.1