]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/external-libkmsxx.git/blob - libkms++/property.h
db: use PageFlipHandler
[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         void print_short() const;
16         const char *name() const;
18 private:
19         Property(Card& card, uint32_t id);
20         ~Property();
22         PropertyPriv* m_priv;
23 };
24 }