pmt: Add documentation to libhelper functions, etc.

This commit is contained in:
2025-09-02 19:20:11 +03:00
parent 360959381b
commit e1dc7132ee
3 changed files with 211 additions and 15 deletions

View File

@@ -102,7 +102,7 @@ int main(int argc, char **argv) {
std::cout << "Current date: " << Helper::currentDate() << std::endl;
std::cout << "Current time: " << Helper::currentTime() << std::endl;
std::cout << "Output of 'ls' command: "
<< Helper::runCommandWithOutput("ls") << std::endl;
<< Helper::runCommandWithOutput("ls").first << std::endl;
std::cout << "Basename of " << test_path("file2.txt") << ": "
<< Helper::pathBasename(test_path("file2.txt")) << std::endl;
std::cout << "Dirname of " << test_path("file2.txt") << ": "