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