logplus/WellLogModule/include/SameDepthModule.h

37 lines
786 B
C
Raw Normal View History

2026-01-16 17:18:41 +08:00
/**
* @file SameDepthModule.h
* @brief ,线
* 线
* @date 2014-7-15
* @author: aiya
*/
#ifndef PAI_FRAME_MODULEAPI_SAMEDEPTHMODULE_H
#define PAI_FRAME_MODULEAPI_SAMEDEPTHMODULE_H
#pragma warning( push ,0)
#include "WellLogModule.h"
#include "WellLogDefines.h"
#pragma warning( pop )
namespace pai {
namespace module {
class WELLLOGMODULE_EXPORT SameDepthModule:public CWellLogModule
{
public:
SameDepthModule();
virtual ~SameDepthModule();
virtual STATUS Run();
protected:
/**
*
*/
virtual int RunKernel(const CON_STRU& CON,const INP_STRU &INP, OUTP_STRU &OUTP,const HD_STRU &HD)=0;
private:
};
}
}
#endif