重新构建的批检仪主板程序

This commit is contained in:
andy
2023-11-26 23:05:35 +08:00
parent b1b69d307f
commit 4a70f64693
29 changed files with 2565 additions and 64 deletions

View File

@@ -21,7 +21,7 @@ public:
char operator [](int index){
int size=this->size();
if(index<0) index=size+index;
if(index>=size) return char(0);
if(index<0||index>=size) return char(0);
return QByteArray::operator [](index);
}
myarray &operator =(const myarray &b){