diff -r 5707b75503d5 -r e4b6ee329501 contactengine/mainwindow.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contactengine/mainwindow.h Thu Aug 05 16:40:47 2010 -0700 @@ -0,0 +1,27 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include +#include "contactsengine.h" + +namespace Ui { + class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + +public slots: + void backendSelected(QString ); + +private: + Ui::MainWindow *ui; + ContactsEngine *ce; +}; + +#endif // MAINWINDOW_H