aboutsummaryrefslogtreecommitdiff
path: root/mwe/resource-manager/resource.h
blob: a81e127ed4c85fd73e57712cd5d29b53336dac69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <string>
class Resource {
public:
	virtual ~Resource() = default;

	const std::string & getContent() const { return this->m_content; }

protected:
	std::string m_content;
};