2015-08-30 10:24:44 +02:00
|
|
|
#ifndef LIBRARYADDFUNCTIONDIALOG_H
|
|
|
|
#define LIBRARYADDFUNCTIONDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
2015-08-30 11:59:33 +02:00
|
|
|
class LibraryAddFunctionDialog;
|
2015-08-30 10:24:44 +02:00
|
|
|
}
|
|
|
|
|
2015-08-30 11:59:33 +02:00
|
|
|
class LibraryAddFunctionDialog : public QDialog {
|
2015-08-30 10:24:44 +02:00
|
|
|
Q_OBJECT
|
2015-08-30 11:59:33 +02:00
|
|
|
|
2015-08-30 10:24:44 +02:00
|
|
|
public:
|
|
|
|
explicit LibraryAddFunctionDialog(QWidget *parent = 0);
|
|
|
|
~LibraryAddFunctionDialog();
|
2015-08-30 11:59:33 +02:00
|
|
|
|
2015-08-30 10:24:44 +02:00
|
|
|
QString functionName() const;
|
|
|
|
int numberOfArguments() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::LibraryAddFunctionDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LIBRARYADDFUNCTIONDIALOG_H
|