LWQ
2025-07-14 8c7705d8e69c358dcbe77354fcc02b76156e8164
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
#ifndef THRES_PROCRSS_H
#define THRES_PROCRSS_H
 
#include "ThresDotProcess.h"
 
class CThresProcess
{
public:
    CThresProcess();
    CThresProcess(DimensionDir eDir);
    ~CThresProcess();
 
public:
    //1. Ö´ÐÐ
    int execute(DimensionDir eDir);
 
    //6. ±£´æ
    Json::Value WriteToJson(void);
    void DecodeJson(Json::Value &jsValue);
 
public:
    DimensionDir m_eDir;
    CThresDotProcess *m_dots[12];
 
private:
    //1. ³õʼ»¯
    int init(void);
 
    //2. ÊÍ·Å
    void release(void);
};
 
#endif