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.
31 lines
484 B
C++
31 lines
484 B
C++
#ifndef ADDRESSBOOKFORM_H
|
|
#define ADDRESSBOOKFORM_H
|
|
|
|
#include <QWidget>
|
|
#include <autoform.h>
|
|
#include "data/addressbookdata.h"
|
|
|
|
namespace Ui {
|
|
class AddressbookForm;
|
|
}
|
|
|
|
class AddressbookForm : public AutoForm<AddressbookData>
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AddressbookForm(QWidget *parent = 0);
|
|
~AddressbookForm() override;
|
|
|
|
private:
|
|
Ui::AddressbookForm *ui;
|
|
|
|
// FormBinder interface
|
|
protected:
|
|
void registerCombos() override;
|
|
};
|
|
|
|
|
|
|
|
#endif // ADDRESSBOOKFORM_H
|