Add apply number of lines in terminal in b_manage

This commit is contained in:
2024-03-12 13:23:30 +01:00
parent 0ade72a37a
commit eff0be1c1c
5 changed files with 27 additions and 5 deletions

View File

@@ -15,6 +15,7 @@ namespace platform {
void sortModel();
void sortDuration();
int maxModelSize() const { return maxModel; };
int maxTitleSize() const { return maxTitle; };
void hideResult(int index, const std::string& pathHidden);
void deleteResult(int index);
int size() const;
@@ -29,6 +30,7 @@ namespace platform {
bool complete;
bool partial;
int maxModel;
int maxTitle;
std::vector<Result> files;
};
};