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.
15 lines
226 B
C
15 lines
226 B
C
8 years ago
|
#ifndef CAMPGRID_H
|
||
|
#define CAMPGRID_H
|
||
|
|
||
|
#include <core.h>
|
||
|
#include "data/camp-data.h"
|
||
|
#include "camp-odb.hxx"
|
||
|
|
||
|
class CampGrid : public GridForm<CampData>
|
||
|
{
|
||
|
public:
|
||
|
CampGrid(QWidget *parent = NULL);
|
||
|
};
|
||
|
|
||
|
#endif // CAMPGRID_H
|