mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 19:24:08 +00:00
21 lines
306 B
C++
21 lines
306 B
C++
|
#ifndef DICTINFO_HH
|
||
|
#define DICTINFO_HH
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "ui_dictinfo.h"
|
||
|
#include "dictionary.hh"
|
||
|
|
||
|
class DictInfo: public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
|
||
|
DictInfo( QWidget * parent = 0 );
|
||
|
void showInfo( sptr< Dictionary::Class > dict );
|
||
|
|
||
|
private:
|
||
|
Ui::DictInfo ui;
|
||
|
};
|
||
|
|
||
|
#endif // DICTINFO_HH
|