1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-03 23:50:53 +02:00

add build time dependency to static lib

the header only fmt lib is used to show this
This commit is contained in:
ClausKlein 2021-02-10 22:33:08 +01:00
parent b58e0717f4
commit 88781d22ab
6 changed files with 62 additions and 19 deletions

View file

@ -26,6 +26,9 @@ namespace greeter {
* @return a string containing the greeting
*/
std::string greet(LanguageCode lang = LanguageCode::EN) const;
/// @brief Return an iso date string
std::string getIsoDate() const;
};
} // namespace greeter