// This file is under GNU General Public License 3.0 // see LICENSE.txt #ifndef LIBPEPHELLOWORLD_HELLO_WORLD_HH #define LIBPEPHELLOWORLD_HELLO_WORLD_HH #include namespace pEp { namespace HelloWorld { // non-template functions and classes // impl in .cc std::string hello_world(); // template functions and classes // impl in .hxx template T hello_world(T param1); } // namespace HelloWorld } // namespace pEp #include "hello_world.hxx" #endif // LIBPEPHELLOWORLD_HELLO_WORLD_HH