Drive Engine  1.0.0
Plateforme de reconstruction 3D
ILogicalParameter.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 #include "IParameter.h"
6 
7 namespace DriveEngine
8 {
18  {
19  public:
20 
35  virtual void SetValue(bool value) = 0;
36 
45  virtual bool GetValue() const = 0;
46  };
47 }
Definition: DefaultCalibrationInfoList.h:12
virtual bool GetValue() const =0
Gets the parameter value.
The logical parameter datatype interface.
Definition: ILogicalParameter.h:17
virtual void SetValue(bool value)=0
Sets the parameter value.
The parameter datatype interface.
Definition: IParameter.h:16