You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
353 B
19 lines
353 B
#ifndef STANDARDPARAMCONFIG_H |
|
#define STANDARDPARAMCONFIG_H |
|
|
|
#include <QWidget> |
|
#include "ui_StandardParamConfig.h" |
|
|
|
class StandardParamConfig : public QWidget |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit StandardParamConfig(QWidget *parent = 0); |
|
~StandardParamConfig(); |
|
|
|
private: |
|
Ui::StandardParamConfig ui; |
|
}; |
|
|
|
#endif // STANDARDPARAMCONFIG_H
|
|
|