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.
20 lines
353 B
20 lines
353 B
12 years ago
|
#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
|