2017-07-15 15:46:18 +01:00
|
|
|
#ifndef MEMORYCONTAINER_H
|
|
|
|
#define MEMORYCONTAINER_H
|
|
|
|
|
|
|
|
#include "ui_memorycontainer.h"
|
|
|
|
|
|
|
|
class MemoryContainer : public QTabWidget, private Ui::MemoryContainer
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-11-30 11:09:16 +00:00
|
|
|
explicit MemoryContainer(QWidget *parent = nullptr);
|
2017-07-15 15:46:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MEMORYCONTAINER_H
|