blob: 0d2ca60624573097e80c98483ef2762d4aa72521 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#ifndef ZEN_WITH_VFS
# define ZEN_WITH_VFS 0
#endif
#if ZEN_WITH_VFS
# include <memory>
namespace zen {
/**
* Virtual File System serving
*/
class Vfs
{
public:
Vfs();
~Vfs();
void Initialize();
void Start();
void Stop();
private:
struct VfsImpl;
std::unique_ptr<VfsImpl> m_Impl;
};
} // namespace zen
#endif
|