class ClientSqlQueryModel : public QSqlQueryModel{public: static int type;}int ClientSqlQueryModel::type =2;
int ClientSqlQueryModel::type =2;
C++ (Qt)class ClientSqlQueryModel : public QSqlQueryModel{public: static int type = 2;};
const static int type = 2;
C++ (Qt)class ClientSqlQueryModel : public QSqlQueryModel{public: static const int type = 2;};