blob: f2b2a0e9daf1f668596b5b892f39f602d4f7720a (
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 <fstream>
#include <iostream>
#include <string>
namespace crepe::api {
class Resource {
public:
Resource(const std::string & src);
public:
//! Get an input stream to the contents of this resource
const std::istream & read();
//! Get the canonical path to this resource
const char * canonical();
private:
std::string src;
std::ifstream file;
};
} // namespace crepe::api
|