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
#ifndef CUT_PROCESS_H
#define CUT_PROCESS_H
 
#include "CutDotProcess.h"
 
class CCutProcess
{
public:
    CCutProcess();
    CCutProcess(DimensionDir eDir);
    ~CCutProcess();
 
public:
    DimensionDir m_eDir;
    bool m_isUse;   //ÊÇ·ñÆôÓÃ
    CCutDotProcess *m_dots[50];
 
public:
    //1. Ö´Ðмì²â
    void Execute(DimensionDir eDir);
 
    //2. Ð´ÈëÎļþ
    Json::Value WriteToJson(void);
    void DecodeJson(Json::Value &jsValue);
};
 
#endif