aboutsummaryrefslogtreecommitdiffstats
path: root/src/client/ClientObject.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-10 23:50:45 +0000
committerDavid Robillard <d@drobilla.net>2011-01-10 23:50:45 +0000
commit21365044f63e70deb2e8bd0685349aad6ea14e85 (patch)
tree4263e3401340b97c6197f308e0aca03a25aa6566 /src/client/ClientObject.hpp
parente2babea8aa8b87ca930cc53fd5ee7cce4eff3206 (diff)
downloadmachina-21365044f63e70deb2e8bd0685349aad6ea14e85.tar.gz
machina-21365044f63e70deb2e8bd0685349aad6ea14e85.tar.bz2
machina-21365044f63e70deb2e8bd0685349aad6ea14e85.zip
Add missing files.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@2824 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/ClientObject.hpp')
-rw-r--r--src/client/ClientObject.hpp69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/client/ClientObject.hpp b/src/client/ClientObject.hpp
new file mode 100644
index 0000000..9b8403c
--- /dev/null
+++ b/src/client/ClientObject.hpp
@@ -0,0 +1,69 @@
+/* This file is part of Machina.
+ * Copyright (C) 2010 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 Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Machina is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Machina. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef MACHINA_CLIENTOBJECT_HPP
+#define MACHINA_CLIENTOBJECT_HPP
+
+#include <map>
+
+#include <sigc++/sigc++.h>
+
+#include "raul/Atom.hpp"
+#include "raul/SharedPtr.hpp"
+
+#include "machina/types.hpp"
+
+namespace Machina {
+namespace Client {
+
+class ClientObject {
+public:
+ ClientObject(uint64_t id);
+ ClientObject(const ClientObject& copy, uint64_t id);
+
+ inline uint64_t id() const { return _id; }
+
+ void set(URIInt key, const Raul::Atom& value);
+ const Raul::Atom& get(URIInt key) const;
+
+ sigc::signal<void, URIInt, Raul::Atom> signal_property;
+
+ class View {
+ public:
+ virtual ~View() {}
+ };
+
+ SharedPtr<View> view() const { return _view; }
+ void set_view(SharedPtr<View> view) { _view = view; }
+
+private:
+ uint64_t _id;
+ SharedPtr<View> _view;
+
+ typedef std::map<URIInt, Raul::Atom> Properties;
+ Properties _properties;
+};
+
+class ClientObjectKey : public ClientObject {
+public:
+ ClientObjectKey(uint64_t id) : ClientObject(id) {}
+};
+
+}
+}
+
+#endif // MACHINA_CLIENTOBJECT_HPP