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
#ifndef HOLE_PROCESS_H
#define HOLE_PROCESS_H
 
#include "HoleDotProcess.h"
 
class CHoleProcess
{
public:
    CHoleProcess();
    CHoleProcess(DimensionDir eDir);
    ~CHoleProcess();
 
public:
    DimensionDir m_eDir;
    CHoleDotProcess* m_dots[4];
 
public:
    //1. Ö´Ðмì²â
    void Execute(DimensionDir eDir);
 
    //2. ±£´æÎļþ
    Json::Value WriteToJson(std::string &strDir);
    void DecodeJson(Json::Value& jsValue, std::string& strDir);
 
};
 
 
 
 
#endif // !HOLE_PROCESS_H