moved to json

This commit is contained in:
ALEXks
2026-02-24 14:41:50 +03:00
parent b705b888f8
commit 96500475c0
13 changed files with 23001 additions and 64 deletions

View File

@@ -23,11 +23,11 @@ public:
elements.push_back(new_line);
}
long getLength() const {
return (long)elements.size();
int getLength() const {
return (int)elements.size();
}
T* get(long i) {
T* get(int i) {
return elements[i];
}