Drive Engine  1.0.0
Plateforme de reconstruction 3D
IModule.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 #include "IExportable.h"
6 #include "Collections/IParameterList.h"
7 
11 class IModule : public IExportable
12 {
13 public:
14 
20  virtual const DriveEngine::IParameterList* GetParameters() const = 0;
21 };
virtual const DriveEngine::IParameterList * GetParameters() const =0
Get the list of parameters of the algorithm.
List of parameters. Used to configure module implementations.
Definition: IParameterList.h:16
The module interface. Every kind of algorithm (and algorithm) used in the reconstruction pipeline mus...
Definition: IModule.h:11
The main interface
Definition: IExportable.h:12