1 #ifndef OPALS_ISECTION_HPP_INCLUDED
2 #define OPALS_ISECTION_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, "opalsSection_d.lib")
10 #pragma comment(lib, "opalsSection.lib")
14 #include <opals/Path.hpp>
15 #include <opals/Vector.hpp>
16 #include <opals/String.hpp>
17 #include <opals/Array.hpp>
28 typedef IGroup< Names::_,
false, Cons<
29 ILeaf< Names::inFile, false, opals::Path >, Cons<
30 ILeaf< Names::gridFile, false, opals::Vector<opals::Path> >, Cons<
31 ILeaf< Names::axisFile, false, opals::Path >, Cons<
32 ILeaf< Names::sectionRange, false, opals::Vector<double> >, Cons<
33 ILeaf< Names::patchSize, false, ArrayD2 >, Cons<
34 ILeaf< Names::overlap, false, double >, Cons<
35 ILeaf< Names::attribute, false, opals::String >, Cons<
36 ILeaf< Names::tileSize, false, unsigned >, Cons<
37 ILeaf< Names::outGeometry, true, opals::Vector<opals::String> >, Cons<
38 ILeaf< Names::filter, false, opals::String >
39 > > > > > > > > > > > Options;
63 virtual const Options& opts()
const = 0;