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.
19 lines
265 B
C
19 lines
265 B
C
9 years ago
|
#ifndef ACCGRID_H
|
||
|
#define ACCGRID_H
|
||
|
|
||
|
#include <core.h>
|
||
|
#include "data/person.h"
|
||
|
|
||
|
#include "accommodation-odb.hxx"
|
||
|
|
||
|
class AccGrid : public GridForm<Person>
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AccGrid(QWidget *parent = NULL);
|
||
|
~AccGrid();
|
||
|
};
|
||
|
|
||
|
#endif // ACCGRID_H
|