AppleWin/source/frontends/qapple/memorycontainer.h
Andrea Odetti 31340919de Move Qt UI to private member.
This way it is clear which variables comes from the ui component.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2019-11-30 15:48:48 +00:00

21 lines
311 B
C++

#ifndef MEMORYCONTAINER_H
#define MEMORYCONTAINER_H
#include <QTabWidget>
namespace Ui {
class MemoryContainer;
}
class MemoryContainer : public QTabWidget
{
Q_OBJECT
public:
explicit MemoryContainer(QWidget *parent = nullptr);
private:
Ui::MemoryContainer *ui;
};
#endif // MEMORYCONTAINER_H