code_app/app/scantool/form_deviceconfig.h

24 lines
474 B
C
Raw Normal View History

2024-04-24 03:57:56 +00:00
#ifndef FORM_DEVICECONFIG_H
#define FORM_DEVICECONFIG_H
#include <QWidget>
#include "sane/sane_ex.h"
2024-04-24 03:57:56 +00:00
class Form_DeviceConfig : public QWidget
{
Q_OBJECT
public:
explicit Form_DeviceConfig(SANE_Handle devHandle, const std::string &deviceConfig, QWidget *parent = nullptr);
2024-04-24 03:57:56 +00:00
~Form_DeviceConfig();
std::string GetDeviceConfig();
private:
void CreateUI(SANE_Handle devHandle, const std::string &deviceConfig);
2024-04-24 03:57:56 +00:00
private:
};
#endif // FORM_DEVICECONFIG_H