]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/external-libkmsxx.git/blob - libkms++/property.h
add *.patch to gitignore
[android/external-libkmsxx.git] / libkms++ / property.h
1 #pragma once
3 #include "drmobject.h"
5 namespace kms
6 {
8 struct PropertyPriv;
10 class Property : public DrmObject
11 {
12         friend class Card;
13 public:
14         const std::string& name() const;
16         const std::string to_str(uint64_t val) const;
17 private:
18         Property(Card& card, uint32_t id);
19         ~Property();
21         PropertyPriv* m_priv;
22         std::string m_name;
23 };
24 }