Drive Engine  1.0.0
Plateforme de reconstruction 3D
IIntegerNumberParameter.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 {
12  const int long IntegerNumberParameterMinimumValue = -2147483600;
13 
17  const int long IntegerNumberParameterMaximumValue = 2147483600;
18 
28  {
29  public:
30 
45  virtual void SetValue(long int number) = 0;
46 
55  virtual int GetValue() const = 0;
56  };
57 
58 
59 }
Definition: DefaultCalibrationInfoList.h:12
virtual int GetValue() const =0
Gets the parameter value.
The integer number parameter datatype interface.
Definition: IIntegerNumberParameter.h:27
virtual void SetValue(long int number)=0
Sets the parameter value.
The parameter datatype interface.
Definition: IParameter.h:16