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