ISnellius.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/NormalsMetaInfo.hpp>
5 #include <opals/Path.hpp>
6 #include <opals/Vector.hpp>
7 #include <opals/Calculator.hpp>
8 
9 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
10  #if defined _DEBUG && !defined OPALS_NO_DEBUG
11  #pragma comment(lib, "opalsSnellius_d.lib")
12  #else
13  #pragma comment(lib, "opalsSnellius.lib")
14  #endif
15 #endif
16 
17 namespace opals {
18 
19  namespace opts
20  {
21  /// Options of \ref ModuleSnellius
22  namespace Snellius
23  {
24  /// Options of \ref ModuleSnellius
25  using Options =
26  IGroup< Names::_,
36  >;
37  }
38  }
39 
40  /// Performs range and refraction corrections of raw laser bathymetry measurements according to Snell's law.
41  /** TODO:
42  More details on opalsSnellius with much more words,
43  possibly on several lines. */
44  /// \see \ref ModuleSnellius
45  class OPALS_API ISnellius : virtual public IModuleBase
46  {
47 
48  public:
49  static ISnellius* New();
50  static ISnellius* New( IControlObject &controlObject );
51  static ISnellius* New( const IModuleBase &parent );
52  static ISnellius* New( const IModuleBase &parent, IControlObject &controlObject );
53 
54  virtual ~ISnellius() {}
55 
56  /// \name Access to module-specific options.
57  ///@{
59  Options& opts() override = 0;
60  const Options& opts() const override = 0;
61  ///@}
62 
63  };
64 
65 };
A leaf that holds a value.
Definition: IOption.hpp:62
IGroup< Names::_, IValue< Names::inFile, false, Path >, IValue< Names::outFile, false, Path >, IValue< Names::refModel, false, Path >, IValue< Names::refractiveIndex, false, opals::Vector< double > >, IValue< Names::oriFile, false, Path >, IValue< Names::oriFormat, false, String >, IValue< Names::filter, false, String >, IValue< Names::setAttribute, false, Calculator< DM::ICalculator::ReadAccess::vectors, DM::ICalculator::WriteAccess::attributes > >, IValue< Names::storeMetaInfo, false, NormalsMetaInfo > > Options
Options of Module Snellius.
Definition: ISnellius.hpp:36
Performs range and refraction corrections of raw laser bathymetry measurements according to Snell's l...
Definition: ISnellius.hpp:45
Contains the public interface of OPALS.
Definition: AbsValueOrQuantile.hpp:8
Abstract base class of all opals modules.
Definition: IModuleBase.hpp:13
Interface for retrieving status and progress information from a module run.
Definition: c++_api/inc/opals/IControlObject.hpp:30
A group of options.
Definition: IOption.hpp:136