1 #ifndef OPALS_ICONTOURING_HPP_INCLUDED
2 #define OPALS_ICONTOURING_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, "opalsContouring_d.lib")
10 #pragma comment(lib, "opalsContouring.lib")
14 #include <opals/String.hpp>
15 #include <opals/Path.hpp>
16 #include <opals/Vector.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::contours, true, opals::Vector<opals::String> >, Cons<
29 ILeaf< Names::minArea, false, double >, Cons<
30 ILeaf< Names::compressCollinear, false, bool >
54 virtual const Options& opts()
const = 0;