aboutsummaryrefslogtreecommitdiff
path: root/qtmips_gui/cachecontent.cpp
blob: 1dd4693f2b972d46bd8594f0f5add89d25616ec8 (plain)
1
2
3
4
5
6
7
8
9
10
#include "cachecontent.h"

CacheContentDock::CacheContentDock(QWidget *parent) : QDockWidget(parent) {
    ui = new Ui::CacheContent();
    ui->setupUi(this);
}

CacheContentDock::~CacheContentDock() {
    delete ui;
}