summaryrefslogtreecommitdiff
path: root/bsd-core/savage
ModeNameSize
-rw-r--r--Makefile462logplain
a> 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;
};
}