Drive Engine  1.0.0
Plateforme de reconstruction 3D
ITextParameter.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 {
16  class ITextParameter : public IParameter
17  {
18  public:
19 
35  virtual void SetValue(const char* text) = 0;
36 
51  virtual const char* GetValue() const = 0;
52  };
53 }
The text parameter datatype interface.
Definition: ITextParameter.h:16
Definition: DefaultCalibrationInfoList.h:12
virtual const char * GetValue() const =0
Gets the parameter value.
The parameter datatype interface.
Definition: IParameter.h:16
virtual void SetValue(const char *text)=0
Sets the parameter value.