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