summaryrefslogtreecommitdiff
path: root/libkms++/property.h
blob: ffab8d0cd05c911d22b1e1ab82c24e7b3a62ddf6 (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
25
#pragma once

#include "drmobject.h"

namespace kms
{

struct PropertyPriv;

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

	const std::string& name() const;

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

	PropertyPriv* m_priv;
	std::string m_name;
};
}