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.
26 lines
476 B
C
26 lines
476 B
C
|
3 years ago
|
#pragma once
|
||
|
|
#include "icameraid.h"
|
||
|
|
|
||
|
|
#ifdef BUILD_COMMDLL
|
||
|
|
#define COMMDLL_DLLCLASS __declspec(dllexport)
|
||
|
|
#else
|
||
|
|
#define COMMDLL_DLLCLASS __declspec(dllimport)
|
||
|
|
#endif
|
||
|
|
|
||
|
|
class COMMDLL_DLLCLASS CLegacyCameraId :
|
||
|
|
public CICameraId
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CLegacyCameraId(void);
|
||
|
|
~CLegacyCameraId(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);
|
||
|
|
};
|