From: Jyri Sarha Date: Tue, 20 Oct 2015 13:48:58 +0000 (+0300) Subject: libkms++/drmobject: Add const std::map& get_prop_map() const X-Git-Url: https://git.ti.com/gitweb?p=android%2Fexternal-libkmsxx.git;a=commitdiff_plain;h=74580866b48d0da037deed2ea142fc15e1984b19;ds=sidebyside libkms++/drmobject: Add const std::map& get_prop_map() const --- 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& 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);