CGit
Gitweb
projects
/
android
/
external-libkmsxx.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add DrmObject::set_id()
[android/external-libkmsxx.git]
/
libkms++
/
property.h
1
#pragma once
2
3
#include "drmobject.h"
4
5
namespace kms
6
{
7
8
struct PropertyPriv;
9
10
class Property : public DrmObject
11
{
12
public:
13
Property(Card& card, uint32_t id);
14
~Property();
15
16
void print_short() const;
17
18
const char *name() const;
19
20
private:
21
PropertyPriv* m_priv;
22
};
23
}