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