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