6 Star 4 Fork 2

GPLme / SG-Database

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jsCollection.h 546 Bytes
一键复制 编辑 原始数据 按行查看 历史
ECIR 提交于 2021-03-09 14:25 . 可能是全世界最快的数据库
#pragma once
#include "col.hpp"
class jsCollection : public QObject, public manageable
{
Q_OBJECT
vector<int> intVec;
vector<Basic*> basicVec;
public:
jsCollection(const vector<int>& intVec) {
this->intVec=intVec;
}
jsCollection(vector<Basic*> basicVec) {
this->basicVec=basicVec;
}
vector<int> getintVec(){
return intVec;
}
vector<Basic*> getbasicVec(){
return basicVec;
}
Q_INVOKABLE bool isEmpty(){
return intVec.empty()&&basicVec.empty();
}
};
C++
1
https://gitee.com/sg-first/SG-Database.git
git@gitee.com:sg-first/SG-Database.git
sg-first
SG-Database
SG-Database
master

搜索帮助