1 #ifndef OPALS_ICELL_HPP_INCLUDED
2 #define OPALS_ICELL_HPP_INCLUDED
4 #include <opals/IModuleBase.hpp>
5 #include <opals/StatFeature.hpp>
6 #include <opals/GridLimit.hpp>
7 #include <opals/String.hpp>
8 #include <opals/Path.hpp>
9 #include <opals/Vector.hpp>
11 #if !defined(OPALS_EXPORTS) && !defined(OPALS_MODULE_EXPORTS)
12 #if defined _DEBUG && !defined OPALS_NO_DEBUG
13 #pragma comment(lib, "opalsCell_d.lib")
15 #pragma comment(lib, "opalsCell.lib")
26 typedef IGroup< Names::_,
false, Cons<
27 ILeaf< Names::inFile, false, opals::Vector<opals::Path> >, Cons<
28 ILeaf< Names::outFile, false, opals::Vector< opals::Path > >, Cons<
29 ILeaf< Names::oFormat, false, opals::String >, Cons<
30 ILeaf< Names::cellSize, false, opals::Vector< float > >, Cons<
31 ILeaf< Names::attribute, false, opals::String >, Cons<
32 ILeaf< Names::feature, false, opals::Vector< opals::StatFeature > >, Cons<
33 ILeaf< Names::limit, false, opals::GridLimit >, Cons<
34 ILeaf< Names::filter, false, opals::String >, Cons<
35 ILeaf< Names::noData, false, float >, Cons<
36 ILeaf< Names::multiBand, false, bool >
37 > > > > > > > > > > > Options;
64 virtual const Options& opts()
const = 0;