27 lines
440 B
C++
27 lines
440 B
C++
#ifndef STRINGTABLEVIEWER_H
|
|
#define STRINGTABLEVIEWER_H
|
|
|
|
#include "stringtable.h"
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class StringTableViewer;
|
|
}
|
|
|
|
class StringTableViewer : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit StringTableViewer(QWidget *parent = nullptr);
|
|
~StringTableViewer();
|
|
|
|
void SetStringTable(std::shared_ptr<StringTable> aStringTable);
|
|
|
|
private:
|
|
Ui::StringTableViewer *ui;
|
|
};
|
|
|
|
#endif // STRINGTABLEVIEWER_H
|