SDC C-Project CF Review 프로그램
LYW
2021-08-17 572aebd50409d2f11183d6ebbb9d12fe9041e7a5
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
#pragma once
 
#include <vector>
 
class AFX_EXT_CLASS CRcpLightInfo
{
public:
    CRcpLightInfo(void);
    virtual ~CRcpLightInfo(void);
 
public:
    void Reset();
    void SetInfo(const CRcpLightInfo& rhs);
    void GetInfo(CRcpLightInfo& rhs);
 
    int    GetLightLevel() const        { return m_nLightLevel; }
    int    GetMinThresLevel() const    { return m_nMinThresLevel; }
    int    GetMaxThresLevel() const    { return m_nMaxThresLevel; }
    int    GetAutoLightStep() const    { return m_nAutoLightStep; }
 
public:
    int        m_nLightLevel;
    int        m_nMinThresLevel;
    int        m_nMaxThresLevel;
    int        m_nAutoLightStep;
};
 
typedef std::vector<CRcpLightInfo>                VectorRcpLightInfo;
typedef std::vector<CRcpLightInfo>::iterator    VectorRcpLightInfoIt;