aboutsummaryrefslogtreecommitdiff
path: root/src/gui/main-window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/main-window.h')
-rw-r--r--src/gui/main-window.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/main-window.h b/src/gui/main-window.h
index 1e6eeb20..74e5effd 100644
--- a/src/gui/main-window.h
+++ b/src/gui/main-window.h
@@ -35,6 +35,7 @@
#include <QMainWindow>
#include <QTabWidget>
#include "open-axiom.h"
+#include "server.h"
namespace OpenAxiom {
// -- Main application window --
@@ -46,9 +47,11 @@ namespace OpenAxiom {
// Pointer to the root file system of the OpenAxiom installation
Filesystem* filesystem() { return &fs; }
+ Server* server() { return &srv; }
private:
Filesystem fs;
+ Server srv;
QTabWidget tabs;
};
}