SDC C-Project CF Review 프로그램
LYW
2021-09-23 c77236e1522caa3e2082dd7b5b32f6c30b125172
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once
 
#include "Serial.h"
#include "LensChangeControl.h"
 
class AFX_EXT_CLASS CLensChangeControl_Nikon : public CSerial, public CLensChangeControl    
{
public:
    CLensChangeControl_Nikon(int nIndex);
    virtual ~CLensChangeControl_Nikon(void);
 
    virtual BOOL    Connect(const CLensChangeControlInfo& controlInfo);
    virtual void    Disconnect();
 
    virtual BOOL    GetPosition(int& nPos);
    virtual BOOL    SetPosition(int nPos);
    virtual BOOL    Backward();    
    virtual BOOL    Forward();
    BOOL            GoHoming();
protected:
    int                m_nCurrentValue;
 
};