| /* This file is (c) 2015 Zhe Wang <0x1997@gmail.com> | |
| * Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */ | |
| namespace Ui { | |
| class ChineseConversion; | |
| } | |
| class ChineseConversion: public QGroupBox | |
| { | |
| Q_OBJECT | |
| public: | |
| ChineseConversion( QWidget * parent, const Config::Chinese & ); | |
| ~ChineseConversion(); | |
| void getConfig( Config::Chinese & ) const; | |
| private: | |
| Ui::ChineseConversion * ui; | |
| }; | |