mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2025-03-10 17:38:04 +00:00
23 lines
363 B
C
23 lines
363 B
C
|
#ifndef CHARACTERSETEXPLORER_H
|
||
|
#define CHARACTERSETEXPLORER_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class CharacterSetExplorer;
|
||
|
}
|
||
|
|
||
|
class CharacterSetExplorer : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit CharacterSetExplorer(QWidget *parent = 0);
|
||
|
~CharacterSetExplorer();
|
||
|
|
||
|
private:
|
||
|
Ui::CharacterSetExplorer *ui;
|
||
|
};
|
||
|
|
||
|
#endif // CHARACTERSETEXPLORER_H
|