#ifndef GTL_HW_H #define GTL_HW_H #include #include #include #include #include "hw_global.h" #include "gtl_hardware_interface.h" namespace gtl { namespace hw { class HW_EXPORT hw : public QObject { public: hw(QString path, QObject* parent = NULL); QStringList devices() const; device* create_device(QString device, QObject* parent = NULL); private: QMultiMap _instances; }; } } #endif // GTL_HW_H