Torc  0.1
torcpwminput.h
Go to the documentation of this file.
1 #ifndef TORCPWMINPUT_H
2 #define TORCPWMINPUT_H
3 
4 // Torc
5 #include "torcinput.h"
6 
7 class TorcPWMInput : public TorcInput
8 {
9  Q_OBJECT
10 
11  public:
12  TorcPWMInput(double Value, const QString &ModelId, const QVariantMap &Details);
13  virtual ~TorcPWMInput() = 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 // TORCPWMINPUT_H
TorcInput::Type GetType(void) override
double ScaleValue(double Value)
void Start(void) override
QStringList GetDescription(void) override
virtual ~TorcPWMInput()=default
TorcPWMInput(double Value, const QString &ModelId, const QVariantMap &Details)