1 #ifndef OPALS_IDSM_HPP_INCLUDED
2 #define OPALS_IDSM_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, "opalsDSM_d.lib")
10 #pragma comment(lib, "opalsDSM.lib")
14 #include <opals/Path.hpp>
15 #include <opals/Vector.hpp>
16 #include <opals/GridLimit.hpp>
25 typedef IGroup< Names::_,
false, Cons<
26 ILeaf< Names::inFile, false, opals::Vector<opals::Path> >, Cons<
27 ILeaf< Names::outFile, false, opals::Vector<opals::Path> >, Cons<
28 ILeaf< Names::oFormat, false, opals::String >, Cons<
29 ILeaf< Names::tileSize, false, unsigned >, Cons<
30 ILeaf< Names::gridSize, false, double >, Cons<
31 ILeaf< Names::neighbours, false, int >, Cons<
32 ILeaf< Names::searchRadius, false, double >, Cons<
33 ILeaf< Names::maxSigma, false, float >, Cons<
34 ILeaf< Names::filter, false, opals::String >, Cons<
35 ILeaf< Names::limit, false, opals::GridLimit >, Cons<
36 ILeaf< Names::noData, false, float >, Cons<
37 ILeaf< Names::multiBand, false, bool >
38 > > > > > > > > > > > > > Options;
62 virtual const Options& opts()
const = 0;