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.
25 lines
478 B
C++
25 lines
478 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);
|
|
|
|
string id(int nIndex);
|
|
string sos(int nIndex);
|
|
string eos(int nIndex);
|
|
|
|
int index(string strId);
|
|
int indexSOS(string strId);
|
|
int indexEOS(string strId);
|
|
};
|