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 
8 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
9  #if defined _DEBUG && !defined OPALS_NO_DEBUG
10  #pragma comment(lib, "opalsSnellius_d.lib")
11  #else
12  #pragma comment(lib, "opalsSnellius.lib")
13  #endif
14 #endif
15 
16 namespace opals {
17 
18  namespace opts
19  {
20  /// Options of \ref ModuleSnellius
21  namespace Snellius
22  {
23  /// Options of \ref ModuleSnellius
24  using Options =
25  IGroup< Names::_, false,
34  >;
35  }
36  }
37 
38  /// Performs range and refraction corrections of raw laser bathymetry measurements according to Snell's law.
39  /** TODO:
40  More details on opalsSnellius with much more words,
41  possibly on several lines. */
42  /// \see \ref ModuleSnellius
43  class OPALS_API ISnellius : virtual public IModuleBase
44  {
45 
46  public:
47  static ISnellius* New();
48  static ISnellius* New( IControlObject &controlObject );
49  static ISnellius* New( const IModuleBase &parent );
50  static ISnellius* New( const IModuleBase &parent, IControlObject &controlObject );
51 
52  virtual ~ISnellius() {}
53 
54  /// \name Access to module-specific options.
55  ///@{
57  virtual Options& opts() = 0;
58  virtual const Options& opts() const = 0;
59  ///@}
60 
61  };
62 
63 };
Leaf that holds a read-only value.
Definition: IOption.hpp:63
Performs range and refraction corrections of raw laser bathymetry measurements according to Snell's l...
Definition: ISnellius.hpp:43
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
IGroup< Names::_, false, ILeaf< Names::inFile, false, Path >, ILeaf< Names::outFile, false, Path >, ILeaf< Names::refModel, false, Path >, ILeaf< Names::refractiveIndex, false, double >, ILeaf< Names::oriFile, false, Path >, ILeaf< Names::oriFormat, false, String >, ILeaf< Names::filter, false, String >, ILeaf< Names::storeMetaInfo, false, NormalsMetaInfo > > Options
Options of Module Snellius.
Definition: ISnellius.hpp:34
A group of options.
Definition: IOption.hpp:108