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

#include "drmobject.h"

namespace kms
{

struct PropertyPriv;

class Property : public DrmObject
{
	friend class Card;
public:
	void print_short() const;

	const char *name() const;

private:
	Property(Card& card, uint32_t id);
	~Property();

	PropertyPriv* m_priv;
};
}