You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
449 B
C
29 lines
449 B
C
9 years ago
|
#ifndef ADDRESSBOOKFORM_H
|
||
|
#define ADDRESSBOOKFORM_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QWidget>
|
||
|
#include "autoform.h"
|
||
|
#include "data/addressbookdata.h"
|
||
|
#include "addressbook-odb.hxx"
|
||
|
|
||
|
namespace Ui {
|
||
|
class AddressbookForm;
|
||
|
}
|
||
|
|
||
|
class AddressbookForm : public AutoForm<AddressbookData>
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AddressbookForm(QWidget *parent = 0);
|
||
|
~AddressbookForm();
|
||
|
|
||
|
private:
|
||
|
Ui::AddressbookForm *ui;
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif // ADDRESSBOOKFORM_H
|