diff options
Diffstat (limited to 'src/client/ClientObject.hpp')
-rw-r--r-- | src/client/ClientObject.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/ClientObject.hpp b/src/client/ClientObject.hpp index 9850b01..658d603 100644 --- a/src/client/ClientObject.hpp +++ b/src/client/ClientObject.hpp @@ -47,6 +47,9 @@ public: virtual ~View() {} }; + typedef std::map<URIInt, Raul::Atom> Properties; + const Properties& properties() { return _properties; } + SharedPtr<View> view() const { return _view; } void set_view(SharedPtr<View> view) { _view = view; } @@ -54,7 +57,6 @@ private: uint64_t _id; SharedPtr<View> _view; - typedef std::map<URIInt, Raul::Atom> Properties; Properties _properties; }; |