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.

15 lines
261 B
C

5 years ago
#ifndef __I_IMG_PROC_H_20150326
#define __I_IMG_PROC_H_20150326
#include "baseDefine.h"
#include "baseStruct.h"
class IImgProc
{
public:
IImgProc() {}
virtual ~IImgProc() {}
virtual int IImageProcess(class IImageObject* pImgObj) = 0;
5 years ago
};
#endif