Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bsnes/nall/stream.hpp
2 views
1
#ifndef NALL_STREAM_HPP
2
#define NALL_STREAM_HPP
3
4
#include <algorithm>
5
#include <memory>
6
7
#include <nall/file.hpp>
8
#include <nall/filemap.hpp>
9
#include <nall/gzip.hpp>
10
#include <nall/http.hpp>
11
#include <nall/stdint.hpp>
12
#include <nall/string.hpp>
13
#include <nall/zip.hpp>
14
15
#define NALL_STREAM_INTERNAL_HPP
16
#include <nall/stream/stream.hpp>
17
#include <nall/stream/memory.hpp>
18
#include <nall/stream/mmap.hpp>
19
#include <nall/stream/file.hpp>
20
#include <nall/stream/http.hpp>
21
#include <nall/stream/gzip.hpp>
22
#include <nall/stream/zip.hpp>
23
#include <nall/stream/auto.hpp>
24
#undef NALL_STREAM_INTERNAL_HPP
25
26
#endif
27
28