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.
28 lines
430 B
C++
28 lines
430 B
C++
#ifndef ADDRESSBOOKFORM_H
|
|
#define ADDRESSBOOKFORM_H
|
|
|
|
#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
|