]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/external-libkmsxx.git/blob - libkms++/property.h
Add std::string support to swig for lua and python.
[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 public:
13         Property(Card& card, uint32_t id);
14         ~Property();
16         void print_short() const;
18         const char *name() const;
20 private:
21         PropertyPriv* m_priv;
22 };
23 }