blob: 736ba445d6a6e213c8e7051536e138ab862a41c0 (
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 {
class Asset {
public:
Asset(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
|