16 lines
294 B
C++
16 lines
294 B
C++
#ifndef ADDRESSBOOKGRID_H
|
|
#define ADDRESSBOOKGRID_H
|
|
|
|
#include <core.h>
|
|
#include "data/addressbookdata.h"
|
|
#include "addressbook-odb.hxx"
|
|
|
|
class AddressbookGrid : public GridForm<AddressbookData>
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
AddressbookGrid(QWidget *parent = NULL);
|
|
};
|
|
|
|
#endif // ADDRESSBOOKGRID_H
|