aboutsummaryrefslogtreecommitdiffstats
path: root/src/client/ClientObject.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-12-18 07:53:39 +0000
committerDavid Robillard <d@drobilla.net>2014-12-18 07:53:39 +0000
commit0f5a2bafb9f1c3f64256e1899857b2f5cb3d8982 (patch)
treef826e3cda65db9990aa9d1b805d634f0e3ce23d5 /src/client/ClientObject.cpp
parent452f0c9a8e020831eedb0dcb8b78b8ca9435b502 (diff)
downloadmachina-0f5a2bafb9f1c3f64256e1899857b2f5cb3d8982.tar.gz
machina-0f5a2bafb9f1c3f64256e1899857b2f5cb3d8982.tar.bz2
machina-0f5a2bafb9f1c3f64256e1899857b2f5cb3d8982.zip
Work towards engine/GUI separation.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@5495 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/ClientObject.cpp')
-rw-r--r--src/client/ClientObject.cpp5
1 files changed, 3 insertions, 2 deletions
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 <http://drobilla.net>
+ Copyright 2007-2014 David Robillard <http://drobilla.net>
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)