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.
16 lines
309 B
C
16 lines
309 B
C
9 years ago
|
#ifndef ADDRESSBOOKTABLEMODEL_H
|
||
|
#define ADDRESSBOOKTABLEMODEL_H
|
||
|
#include <autotablemodel.h>
|
||
|
|
||
|
#include "data/addressbookdata.h"
|
||
|
|
||
|
class AddressbookTableModel : public AutoTableModel<AddressbookData>
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
AddressbookTableModel(QObject *parent= NULL);
|
||
|
};
|
||
|
|
||
|
#endif // ADDRESSBOOKTABLEMODEL_H
|
||
|
|