forked from Mirrors/freeswitch
0b4a7b63a5
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16297 d0543943-73ff-0310-b7d9-9358b9ac24b2
29 lines
468 B
C++
29 lines
468 B
C++
#ifndef PREFACCOUNTS_H
|
|
#define PREFACCOUNTS_H
|
|
|
|
#include <QObject>
|
|
#include "ui_prefdialog.h"
|
|
|
|
class QSettings;
|
|
class AccountDialog;
|
|
|
|
class PrefAccounts : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
explicit PrefAccounts(Ui::PrefDialog *ui);
|
|
void writeConfig();
|
|
|
|
public slots:
|
|
void readConfig();
|
|
|
|
private slots:
|
|
void addAccountBtnClicked();
|
|
|
|
private:
|
|
Ui::PrefDialog *_ui;
|
|
AccountDialog *_accDlg;
|
|
QSettings *_settings;
|
|
};
|
|
|
|
#endif // PREFACCOUNTS_H
|