You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
558 B
C++
24 lines
558 B
C++
#pragma once
|
|
#include "icameraid.h"
|
|
|
|
#ifdef BUILD_COMMDLL
|
|
#define COMMDLL_DLLCLASS __declspec(dllexport)
|
|
#else
|
|
#define COMMDLL_DLLCLASS __declspec(dllimport)
|
|
#endif
|
|
|
|
class COMMDLL_DLLCLASS CDecimalCameraId : public CICameraId
|
|
{
|
|
public:
|
|
CDecimalCameraId(void);
|
|
~CDecimalCameraId(void);
|
|
|
|
std::string id(int nIndex) override;
|
|
std::string sos(int nIndex) override;
|
|
std::string eos(int nIndex) override;
|
|
|
|
int index(std::string strId) override;
|
|
int indexSOS(std::string strId) override;
|
|
int indexEOS(std::string strId) override;
|
|
};
|