1 #ifndef OPALS_ISIMPLIFY_HPP_INCLUDED
2 #define OPALS_ISIMPLIFY_HPP_INCLUDED
4 #include <opals/IModuleBase.hpp>
5 #include <opals/DivisionMode.hpp>
7 #if !defined(OPALS_EXPORTS) && !defined(OPALS_MODULE_EXPORTS)
8 #if defined _DEBUG && !defined OPALS_NO_DEBUG
9 #pragma comment(lib, "opalsSimplify_d.lib")
11 #pragma comment(lib, "opalsSimplify.lib")
15 #include <opals/String.hpp>
16 #include <opals/Path.hpp>
25 typedef IGroup< Names::_,
false, Cons<
26 ILeaf< Names::inFile, false, opals::Path >, Cons<
27 ILeaf< Names::outFile, false, opals::Path >, Cons<
28 ILeaf< Names::oFormat, false, opals::String >, Cons<
29 ILeaf< Names::maxTol, false, double >, Cons<
30 ILeaf< Names::maxDist, false, double >, Cons<
31 ILeaf< Names::division, false, opals::DivisionMode::Type >, Cons<
32 ILeaf< Names::lineVertexDist, false, double >, Cons<
33 ILeaf< Names::lineBufferDist, false, double >
34 > > > > > > > > > Options;
63 virtual const Options& opts()
const = 0;