diff options
author | Jyri Sarha <jsarha@ti.com> | 2015-10-20 16:48:58 +0300 |
---|---|---|
committer | Jyri Sarha <jsarha@ti.com> | 2015-10-20 19:18:32 +0300 |
commit | 74580866b48d0da037deed2ea142fc15e1984b19 (patch) | |
tree | 7672f869ac352ce3d1ca9da4db81f817d9bda10a /libkms++ | |
parent | e3820f911a337c5eb1832449c378658469305ef1 (diff) |
libkms++/drmobject: Add const std::map<uint32_t, uint64_t>& get_prop_map() const
Diffstat (limited to 'libkms++')
-rw-r--r-- | libkms++/drmobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libkms++/drmobject.h b/libkms++/drmobject.h index 5e2a28c..9ce2adc 100644 --- a/libkms++/drmobject.h +++ b/libkms++/drmobject.h @@ -27,6 +27,9 @@ public: uint64_t get_prop_value(uint32_t id) const; uint64_t get_prop_value(const std::string& name) const; + const std::map<uint32_t, uint64_t>& get_prop_map() const { + return m_prop_values; + } protected: DrmObject(Card& card, uint32_t object_type); DrmObject(Card& card, uint32_t id, uint32_t object_type, uint32_t idx = 0); |