1 #ifndef OPALS_ITERRAINMASK_HPP_INCLUDED
2 #define OPALS_ITERRAINMASK_HPP_INCLUDED
4 #include <opals/IModuleBase.hpp>
6 #if !defined(OPALS_EXPORTS) && !defined(OPALS_MODULE_EXPORTS)
7 #if defined _DEBUG && !defined OPALS_NO_DEBUG
8 #pragma comment(lib, "opalsTerrainMask_d.lib")
10 #pragma comment(lib, "opalsTerrainMask.lib")
14 #include <opals/Path.hpp>
15 #include <opals/Vector.hpp>
24 typedef IGroup< Names::_,
false, Cons<
25 ILeaf< Names::inFile, false, opals::Path >, Cons<
26 ILeaf< Names::outFile, false, opals::Path >, Cons<
27 ILeaf< Names::oFormat, false, opals::String >, Cons<
28 ILeaf< Names::minHeight, false, opals::Vector<double> >, Cons<
29 ILeaf< Names::maxWidth, false, double >, Cons<
30 ILeaf< Names::minConsensus, false, int >, Cons<
31 ILeaf< Names::noData, false, float >, Cons<
32 ILeaf< Names::debugOutFile, false, bool >
33 > > > > > > > > > Options;
57 virtual const Options& opts()
const = 0;