#include "postregistergrid.h" #include #include #include "postregister-odb.hxx" PostRegisterGrid::PostRegisterGrid(QWidget *parent) :GridForm(parent) { setTableModel(new AutoTableModel()); showImportButton(); } bool PostRegisterGrid::canAddRecord() { return false; } bool PostRegisterGrid::canEditRecord() { return false; } bool PostRegisterGrid::canDeleteRecord() { return false; }