forked from Mirrors/freeswitch
22 lines
342 B
C++
22 lines
342 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();
|
|
void postWriteConfig();
|
|
|
|
private:
|
|
Ui::PrefDialog *_ui;
|
|
|
|
};
|
|
|
|
#endif // PREFSOFIA_H
|