Parameter.h 346 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#ifndef PARAMETER_H
#define PARAMETER_H

#include <QString>
#include "mavlink_types.h"
#include "QGCParamID.h"

namespace OpalRT
{
class Parameter
{
public:
    Parameter();

protected:
    QString *simulinkName;
    QString *simulinkPath;
    unsigned short opalID;

    QGCParamID *paramID;
    uint8_t componentID;
};
}

#endif // PARAMETER_H