mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
22 lines
343 B
C++
22 lines
343 B
C++
#ifndef __OPTIONS_DIALOG_H
|
|
#define __OPTIONS_DIALOG_H
|
|
|
|
#include "yacreader_options_dialog.h"
|
|
|
|
#include "yacreader_global.h"
|
|
|
|
using namespace YACReader;
|
|
|
|
class OptionsDialog : public YACReaderOptionsDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
OptionsDialog(QWidget * parent = 0);
|
|
|
|
public slots:
|
|
void editApiKey();
|
|
};
|
|
|
|
|
|
#endif
|