contactengine/mainwindow.h
author John Kern <johnk@symbian.org>
Thu, 12 Aug 2010 10:49:23 -0700
changeset 25 adbe71832e2b
parent 23 51fcdd1558d8
child 30 33e489bb7487
permissions -rwxr-xr-x
runs on-device now; testing on 5800

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include "contactsengine.h"

namespace Ui {
    class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

public slots:
    void errorOccurred(QString errMsg);

private:
    Ui::MainWindow *ui;
    ContactsEngine *ce;
};

#endif // MAINWINDOW_H