goldendict-ng / src /ui /chineseconversion.hh
fasdfsa's picture
init
b6bd94d
/* This file is (c) 2015 Zhe Wang <0x1997@gmail.com>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#pragma once
#include <QGroupBox>
#include "config.hh"
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;
};