#include "pch.h" #include "IDWCreator.h" extern "C" __declspec(dllexport) void IDWModelCreate(LPCTSTR xyzFile, LPCTSTR borderFile,LPCTSTR faultFile, LPCTSTR resultFile, int XCount, double smoothFactor, int smoothTimes, CPPCallback callBack, int insertTimes, double contourStep, int contourMarkSpace , double xMin = -1, double yMin = -1, double xMax = -1, double yMax = -1) { CIDWCreator creator; creator.Create(xyzFile, borderFile, faultFile, resultFile, XCount, smoothFactor, smoothTimes, callBack, insertTimes, contourStep, contourMarkSpace , xMin, yMin, xMax, yMax); }