forked from Mirrors/freeswitch
abbfdbd7e5
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16596 d0543943-73ff-0310-b7d9-9358b9ac24b2
21 lines
314 B
C++
21 lines
314 B
C++
#ifndef PREFSOFIA_H
|
|
#define PREFSOFIA_H
|
|
|
|
#include <QObject>
|
|
#include "ui_prefdialog.h"
|
|
|
|
class PrefSofia : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PrefSofia(Ui::PrefDialog *ui, QObject *parent = 0);
|
|
void writeConfig();
|
|
void readConfig();
|
|
|
|
private:
|
|
Ui::PrefDialog *_ui;
|
|
|
|
};
|
|
|
|
#endif // PREFSOFIA_H
|