blob: 4f112e34c98a6dd19e3eb96fd65a17040fe2cf37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <string>
class Resource{
public:
virtual ~Resource() =default;
const std::string& getContent() const{
return this->m_content;
}
protected:
std::string m_content;
};
|