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.
26 lines
348 B
C
26 lines
348 B
C
8 years ago
|
#ifndef CAMPFORM_H
|
||
|
#define CAMPFORM_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <core.h>
|
||
|
#include "data/camp-data.h"
|
||
|
#include "camp-odb.hxx"
|
||
|
|
||
|
namespace Ui {
|
||
|
class CampForm;
|
||
|
}
|
||
|
|
||
|
class CampForm : public AutoForm<CampData>
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit CampForm(QWidget *parent = 0);
|
||
|
~CampForm();
|
||
|
|
||
|
private:
|
||
|
Ui::CampForm *ui;
|
||
|
};
|
||
|
|
||
|
#endif // CAMPFORM_H
|