aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/resource.h
blob: e6456f9fe243dd7c2862159c5368dcbbb3b3e504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once


#include <string>

namespace crepe::api {

class Resource{

public:
	
	virtual ~Resource() =default;

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

protected:
	std::string m_content;
};


}