Torc  0.1
torcphinput.h
Go to the documentation of this file.
1 #ifndef TORCPHINPUT_H
2 #define TORCPHINPUT_H
3 
4 // Torc
5 #include "torcinput.h"
6 
7 class TorcpHInput : public TorcInput
8 {
9  Q_OBJECT
10 
11  public:
12  TorcpHInput(double Value, const QString &ModelId, const QVariantMap &Details);
13  virtual ~TorcpHInput() = default;
14 
15  QStringList GetDescription (void) override;
16  TorcInput::Type GetType (void) override;
17  void Start (void) override;
18  double ScaleValue (double Value);
19 };
20 
21 #endif // TORCPHINPUT_H
void Start(void) override
Definition: torcphinput.cpp:41
QStringList GetDescription(void) override
Definition: torcphinput.cpp:31
double ScaleValue(double Value)
Definition: torcphinput.cpp:47
TorcpHInput(double Value, const QString &ModelId, const QVariantMap &Details)
Definition: torcphinput.cpp:26
TorcInput::Type GetType(void) override
Definition: torcphinput.cpp:36
virtual ~TorcpHInput()=default