diff options
Diffstat (limited to 'src/lib/libbible.h')
-rw-r--r-- | src/lib/libbible.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/libbible.h b/src/lib/libbible.h index f77dc8c..fda4d20 100644 --- a/src/lib/libbible.h +++ b/src/lib/libbible.h @@ -27,6 +27,17 @@ namespace libbible { * @return Map of modName to supported books */ std::map<std::string, std::vector<std::string>> getModules(void); + + /* + * @return List of module names + */ + std::vector<std::string> getModuleNames(void); + + /* + * @param modName the for which to get the books + * @return Vector of books in the module + */ + std::vector<std::string> getBooks(std::string modName); /* * @return Vector of valid single full-chapter passages for a book |