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

#include <string>
#include <fstream>
#include <iostream>

namespace crepe::api {

class Resource {
public:
	Resource(const std::string & src);

public:
	const std::istream & read();

private:
	std::string src;
	std::ifstream file;
};

}