From 67a8adbc93991acfb688f378f52392995a272fac Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 13 Jan 2013 07:49:49 +0000 Subject: Change model to have a single initial node. Merge multiple recording into branches off the same initial node. Make transport state sane with 3 distinct states. Handle announcing objects several times correctly. Don't send useless zero coordinates for new nodes, position in visible area. Rewrite and clean up Machine code. Update help. git-svn-id: http://svn.drobilla.net/lad/trunk/machina@4954 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientObject.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/client/ClientObject.cpp') diff --git a/src/client/ClientObject.cpp b/src/client/ClientObject.cpp index 9b7c319..199cf90 100644 --- a/src/client/ClientObject.cpp +++ b/src/client/ClientObject.cpp @@ -24,10 +24,12 @@ namespace client { ClientObject::ClientObject(uint64_t id) : _id(id) + , _view(NULL) {} ClientObject::ClientObject(const ClientObject& copy, uint64_t id) : _id(id) + , _view(NULL) , _properties(copy._properties) {} -- cgit v1.2.1