blob: 287a7a9291b5caa72d0f18b4db165655cc35564c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright 2007 Nanorex, Inc. See LICENSE file for details.
#ifndef INPUTPARAMETERSWINDOW_H
#define INPUTPARAMETERSWINDOW_H
#include <string>
#include <vector>
using namespace std;
#include <QWidget>
#include <QDialog>
#include "Nanorex/Utility/NXProperties.h"
using namespace Nanorex;
#include "DataWindow.h"
#include "ui_InputParametersWindow.h"
/* CLASS: InputParametersWindow */
class InputParametersWindow
: public DataWindow, private Ui_InputParametersWindow {
Q_OBJECT
public:
InputParametersWindow(const QString& filename, NXProperties* properties,
QWidget *parent = 0);
~InputParametersWindow();
};
#endif
|