blob: 99c2db82c0f2d5c4542af28c86ff63032bd1a630 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#pragma once
class printer;
class jconf;
class executor;
namespace xmrstak
{
struct globalStates;
struct params;
struct environment
{
static inline environment& inst(environment* init = nullptr)
{
static environment* env = nullptr;
if(env == nullptr)
{
if(init == nullptr)
env = new environment;
else
env = init;
}
return *env;
}
environment()
{
}
printer* pPrinter = nullptr;
globalStates* pglobalStates = nullptr;
jconf* pJconfConfig = nullptr;
executor* pExecutor = nullptr;
params* pParams = nullptr;
};
} // namepsace xmrstak
|