mrDarker
2025-08-14 aa2c9d14b1b4058639d938ef7f943c7c7fc7c210
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
#ifndef KDIST_PROCESS_H
#define KDIST_PROCESS_H
 
#include "KeyDistDotProcess.h"
 
class CKDistProcess
{
public:
    CKDistProcess();
    CKDistProcess(DimensionDir eDir);
    ~CKDistProcess();
 
public:
    DimensionDir m_eDir;
    bool m_isUse;   //ÊÇ·ñÆôÓÃ
    int m_nRoiSize;
    CKeyDistDotProcess *m_dots[50];
 
public:
    //1. Ö´Ðмì²â
    void Execute(DimensionDir eDir);
 
    //3. ±£´æÎļþ 
    Json::Value WriteToJson(void);
    void DecodeJson(Json::Value &jsValue);
};
 
#endif