1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-05 16:31:01 +02:00

modernize the cmake files a bit

try to use a namespace for cmake config package
This commit is contained in:
ClausKlein 2021-02-05 02:18:00 +01:00
parent ed4ff7833a
commit bf9cb6c214
9 changed files with 83 additions and 38 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