aboutsummaryrefslogtreecommitdiff
path: root/backend/Object.h
blob: 19472d038ecc9a4bd1ed3eb492fe57c476cc4538 (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 "String.h"

class Object {
private:
	String name;
	String description;

public:
	void set_name(const String & name);
	const String & get_name() const;
	virtual String get_displayname() const;
	void set_description(const String & description);
	const String & get_description() const;

protected:
	friend class ObjectFactory;
	Object(const String & name, const String & description);
public:
	virtual ~Object() = default;

};