From 0f5a2bafb9f1c3f64256e1899857b2f5cb3d8982 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 18 Dec 2014 07:53:39 +0000 Subject: Work towards engine/GUI separation. git-svn-id: http://svn.drobilla.net/lad/trunk/machina@5495 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientObject.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/client/ClientObject.cpp') diff --git a/src/client/ClientObject.cpp b/src/client/ClientObject.cpp index 9481d10..20b50a2 100644 --- a/src/client/ClientObject.cpp +++ b/src/client/ClientObject.cpp @@ -1,6 +1,6 @@ /* This file is part of Machina. - Copyright 2007-2013 David Robillard + Copyright 2007-2014 David Robillard Machina is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -21,9 +21,10 @@ namespace machina { namespace client { -ClientObject::ClientObject(uint64_t id) +ClientObject::ClientObject(uint64_t id, const Properties& properties) : _id(id) , _view(NULL) + , _properties(properties) {} ClientObject::ClientObject(const ClientObject& copy, uint64_t id) -- cgit v1.2.1