Mercurial > minori
view include/library/library.h @ 273:f31305b9f60a
*: various code safety changes
this also makes the code build on Qt 5.7. I can't test it though
because I don't have it working... FAIL!
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 18 Apr 2024 16:53:17 -0400 |
parents | 3ec7804abf17 |
children | 71396ecb6f7e |
line wrap: on
line source
#ifndef MINORI_LIBRARY_LIBRARY_H_ #define MINORI_LIBRARY_LIBRARY_H_ #include "library/library.h" #include <string> #include <unordered_map> namespace Library { // int = anime id, map = episode, paths extern std::unordered_map<int, std::unordered_map<int, std::string>> library; void SearchLibraryFolders(); } // namespace Library #endif // MINORI_LIBRARY_LIBRARY_H_