summaryrefslogtreecommitdiff
path: root/libkms++/property.h
blob: d5306d0be34db2c0b0be3a30c34ff5822b10502e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "drmobject.h"

namespace kms
{

struct PropertyPriv;

class Property : public DrmObject
{
public:
	Property(Card& card, uint32_t id);
	~Property();

	void print_short() const;

	const char *name() const;

private:
	PropertyPriv* m_priv;
};
}