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
343 B
C

#ifndef _ALG_EG_H_
#define _ALG_EG_H_
#include ".\lpbengine.h"
#include ".\lpalgorithm.h"
class algEg : IAlgo
{
public:
algEg();
virtual ~algEg();
virtual bool Exec(IDetectorTask *lpTask, IDetectorAlgorithm* lpAlgorithm);
virtual bool Init(IDetectorTask *lpTask, IDetectorAlgorithm* lpAlgorithm);
private:
};
#endif // _ALG_EG_H_