summaryrefslogtreecommitdiff
path: root/doc/examples/loggermode/loggermode.h
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/loggermode/loggermode.h')
-rw-r--r--doc/examples/loggermode/loggermode.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/doc/examples/loggermode/loggermode.h b/doc/examples/loggermode/loggermode.h
deleted file mode 100644
index cf6ad9da47..0000000000
--- a/doc/examples/loggermode/loggermode.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef LOGGERMODE_H
-#define LOGGERMODE_H
-
-#include <coreplugin/imode.h>
-#include <projectexplorer/project.h>
-class QWidget;
-
-struct LoggerModeData;
-class LoggerMode :public Core::IMode
-{
- Q_OBJECT
-
-public:
- LoggerMode();
- ~LoggerMode();
-
- // IMode
- QString name() const;
- QIcon icon() const;
- int priority() const;
- QWidget *widget();
- const char *uniqueModeName() const;
- QList<int> context() const;
- void activated();
- QString contextHelpId() const { return QLatin1String("Qt Creator"); }
-
-protected slots:
- void addNewStackWidgetPage(const QString projectName);
- void addItem();
-
-private:
- LoggerModeData *d;
-};
-
-#endif // NEWMODE_H