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.
20 lines
359 B
C
20 lines
359 B
C
8 years ago
|
#ifndef POSTREGISTERGRID_H
|
||
|
#define POSTREGISTERGRID_H
|
||
|
|
||
|
#include <core.h>
|
||
|
#include "data/postdata.h"
|
||
|
|
||
|
class PostRegisterGrid : public GridForm<PostData>
|
||
|
{
|
||
|
public:
|
||
|
PostRegisterGrid(QWidget *parent = NULL);
|
||
|
|
||
|
// IGridForm interface
|
||
|
protected:
|
||
|
bool canAddRecord();
|
||
|
bool canEditRecord();
|
||
|
bool canDeleteRecord();
|
||
|
};
|
||
|
|
||
|
#endif // POSTREGISTERGRID_H
|