1 2 3 4 5 6 7 8 9 10
#ifndef BAZ_HPP #define BAZ_HPP int baz(); #include <string> static inline std::string baz_str() { return "baz"; } #endif