1 #ifndef OPALS_ISHADE_HPP_INCLUDED
2 #define OPALS_ISHADE_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, "opalsShade_d.lib")
10 #pragma comment(lib, "opalsShade.lib")
14 #include <opals/ShadingMethod.hpp>
15 #include <opals/ResamplingMethod.hpp>
16 #include <opals/GridFeature.hpp>
17 #include <opals/GridLimit.hpp>
18 #include <opals/String.hpp>
19 #include <opals/Path.hpp>
20 #include <opals/Array.hpp>
21 #include <opals/Vector.hpp>
32 typedef IGroup< Names::_,
false, Cons<
33 ILeaf< Names::inFile, false, opals::Vector<opals::Path> >, Cons<
34 ILeaf< Names::feature, false, opals::Vector<opals::GridFeature::Type> >, Cons<
35 ILeaf< Names::outFile, false, opals::Path >, Cons<
36 ILeaf< Names::oFormat, false, opals::String >, Cons<
37 ILeaf< Names::pixelSize, false, float >, Cons<
38 ILeaf< Names::limit, false, opals::GridLimit >, Cons<
39 ILeaf< Names::shading, false, opals::ShadingMethod::Type >, Cons<
40 ILeaf< Names::sunPosition, false, ArrayD2 >
41 > > > > > > > > > Options;
65 virtual const Options& opts()
const = 0;