#include "countryregistergrid.h" 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; }