1 #ifndef OPALS_IEXPORT_HPP_INCLUDED
2 #define OPALS_IEXPORT_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, "opalsExport_d.lib")
10 #pragma comment(lib, "opalsExport.lib")
14 #include <opals/String.hpp>
15 #include <opals/Path.hpp>
16 #include <opals/TrafPars3dAffine.hpp>
17 #include <opals/Array.hpp>
18 #include <opals/Vector.hpp>
29 typedef IGroup< Names::_,
false, Cons<
30 ILeaf< Names::inFile, false, opals::Vector<opals::Path> >, Cons<
31 ILeaf< Names::outFile, false, opals::Path >, Cons<
32 ILeaf< Names::oFormat, false, opals::String >, Cons<
33 ILeaf< Names::filter, false, opals::String >, Cons<
34 ILeaf< Names::trafo, false, opals::TrafPars3dAffine >, Cons<
35 ILeaf< Names::restoreOrder, false, bool >, Cons<
36 ILeaf< Names::limit, false, ArrayD4 >, Cons<
37 ILeaf< Names::tileSize, false, double >
38 > > > > > > > > > Options;
61 virtual const Options& opts()
const = 0;