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.
21 lines
390 B
C
21 lines
390 B
C
8 years ago
|
#ifndef COUNTRYREGISTERGRID_H
|
||
|
#define COUNTRYREGISTERGRID_H
|
||
|
|
||
|
#include <core.h>
|
||
|
#include "data/countrydata.h"
|
||
|
|
||
|
class CountryRegisterGrid : public GridForm<CountryData>
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
explicit CountryRegisterGrid(QWidget *parent = NULL);
|
||
|
|
||
|
// IGridForm interface
|
||
|
protected:
|
||
|
bool canAddRecord();
|
||
|
bool canEditRecord();
|
||
|
bool canDeleteRecord();
|
||
|
};
|
||
|
|
||
|
#endif // COUNTRYREGISTERGRID_H
|