1 #ifndef OPALS_IADDINFO_HPP_INCLUDED
2 #define OPALS_IADDINFO_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, "opalsAddInfo_d.lib")
10 #pragma comment(lib, "opalsAddInfo.lib")
14 #include <opals/ResamplingMethod.hpp>
15 #include <opals/SelectionMode.hpp>
16 #include <opals/SearchMode.hpp>
17 #include <opals/String.hpp>
18 #include <opals/Path.hpp>
19 #include <opals/Vector.hpp>
28 typedef IGroup< Names::_,
false, Cons<
29 ILeaf< Names::inFile, false, opals::Path >, Cons<
30 ILeaf< Names::attribute, false, opals::String >, Cons<
31 ILeaf< Names::gridFile, false, opals::Vector<opals::Path> >, Cons<
32 ILeaf< Names::tilePointCount, false, unsigned >, Cons<
33 ILeaf< Names::neighbours, false, int >, Cons<
34 ILeaf< Names::searchRadius, false, double >, Cons<
35 ILeaf< Names::selMode, false, opals::SelectionMode::Type >, Cons<
36 ILeaf< Names::searchMode, false, opals::SearchMode::Type >, Cons<
37 ILeaf< Names::filter, false, opals::Vector<opals::String> >, Cons<
38 ILeaf< Names::resampling, false, opals::ResamplingMethod::Type >
39 > > > > > > > > > > > Options;
63 virtual const Options& opts()
const = 0;