Program Listing for File python_device.h

Return to documentation for file (/data/pc/git/control/controller-app/src/python_device.h)

#ifndef PEEL_PYTHON_DEVICE_H
#define PEEL_PYTHON_DEVICE_H

#include <QString>

/* This structure is used to pass data from python to/from the parent app with information about a device.  */
class Device
{
public:
    int         deviceId;
    int         pluginId;
    QString     name;
    QString     status;
    QString     info;
    bool        enabled;
    QStringList takes;
};



#endif  //  PEEL_PYTHON_DEVICE_H