00001
00002
00003
00004
00005 #ifndef BALL_VIEW_DIALOGS_PARSEDFUNCTIONDIALOG_H
00006 #define BALL_VIEW_DIALOGS_PARSEDFUNCTIONDIALOG_H
00007
00008 #ifndef BALL_COMMON_GLOBAL_H
00009 # include <BALL/COMMON/global.h>
00010 #endif
00011
00012 #include <BALL/VIEW/UIC/ui_parsedFunctionDialog.h>
00013
00014 #include <QtGui/qdialog.h>
00015
00016 namespace BALL
00017 {
00018 namespace VIEW
00019 {
00023 class BALL_VIEW_EXPORT ParsedFunctionDialog
00024 : public QDialog,
00025 public Ui_ParsedFunctionDialogData
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 ParsedFunctionDialog( QWidget* parent = 0, const char* name = "ParsedFunctionDialog");
00031 ~ParsedFunctionDialog();
00032 };
00033
00034 } }
00035 #endif