summaryrefslogtreecommitdiff
path: root/libkms++/property.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkms++/property.h')
-rw-r--r--libkms++/property.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libkms++/property.h b/libkms++/property.h
index 24d2ae9..ffab8d0 100644
--- a/libkms++/property.h
+++ b/libkms++/property.h
@@ -13,12 +13,13 @@ class Property : public DrmObject
public:
void print_short() const;
- const char *name() const;
+ const std::string& name() const;
private:
Property(Card& card, uint32_t id);
~Property();
PropertyPriv* m_priv;
+ std::string m_name;
};
}