aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/cachecontent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qtmips_gui/cachecontent.cpp')
-rw-r--r--qtmips_gui/cachecontent.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/qtmips_gui/cachecontent.cpp b/qtmips_gui/cachecontent.cpp
index c651b7b..1dd4693 100644
--- a/qtmips_gui/cachecontent.cpp
+++ b/qtmips_gui/cachecontent.cpp
@@ -1,6 +1,10 @@
-#include "cache_content.h"
+#include "cachecontent.h"
-cache_content::cache_content()
-{
+CacheContentDock::CacheContentDock(QWidget *parent) : QDockWidget(parent) {
+ ui = new Ui::CacheContent();
+ ui->setupUi(this);
+}
+CacheContentDock::~CacheContentDock() {
+ delete ui;
}