summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/doxywizard.h
diff options
context:
space:
mode:
Diffstat (limited to 'addon/doxywizard/doxywizard.h')
-rwxr-xr-xaddon/doxywizard/doxywizard.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/addon/doxywizard/doxywizard.h b/addon/doxywizard/doxywizard.h
index 3fc2b65..eadd51b 100755
--- a/addon/doxywizard/doxywizard.h
+++ b/addon/doxywizard/doxywizard.h
@@ -41,6 +41,10 @@ class MainWindow : public QMainWindow
void closeEvent(QCloseEvent *event);
QString configFileName() const { return m_fileName; }
void updateTitle();
+ // access routines for outputLog pane
+ void MainWindow::outputLogStart();
+ void MainWindow::outputLogText(QString text);
+ void MainWindow::outputLogFinish();
public slots:
void manual();
@@ -101,4 +105,13 @@ class MainWindow : public QMainWindow
bool m_modified;
};
+/*! \brief This class serves as a namespace for global variables used by the doxygen wizard.
+ *
+ * All fields in this class are public and static, so they can be used directly.
+ */
+class DoxygenWizard
+{
+ public:
+ static bool debugFlag;
+};
#endif