blob: 259c6964b4f9799cefa46901a297b009d94e79d0 (
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 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::api
|