diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-10-23 02:24:24 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-10-23 02:24:24 +0200 |
commit | 47f09ad8fb52de7ee9ed6c63574ea2f77e314fa2 (patch) | |
tree | 4259d1e1578d4ad7df3e05c0876723928bb9532f /src/Filesystem.hpp | |
parent | ca7ca2218e07a24075cdc9d48e967cfdc2a3543b (diff) |
Sort filenames alpha-numeric, used as template system dependency management.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/Filesystem.hpp')
-rw-r--r-- | src/Filesystem.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Filesystem.hpp b/src/Filesystem.hpp index 98fbdcd..a87c0a3 100644 --- a/src/Filesystem.hpp +++ b/src/Filesystem.hpp @@ -32,6 +32,7 @@ public: bool Scan(std::string root = "./wwwroot"); bool Scan(std::string root, std::vector<std::string> extensions, bool exclude_extensions = false); FilesDict & GetFiles(); + void GetFilenamesSorted(std::vector<std::string> & sortedFilenames); private: bool AddSingleFile(std::string path, std::string root); |