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.

21 lines
232 B

#ifndef UIC_ONLY_H
#define UIC_ONLY_H
#include <QWidget>
#include "ui_uiconly.h"
class UicOnly : public QWidget
{
Q_OBJECT
public:
explicit UicOnly(QWidget* parent = 0);
~UicOnly();
private:
Ui::UicOnly* ui;
};
#endif