forked from pEp.foundation/CXX-project-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
569 B
24 lines
569 B
// This file is under GNU General Public License 3.0
|
|
// see LICENSE.txt
|
|
|
|
#ifndef LIBPEPHELLOWORLD_HELLO_WORLD_HH
|
|
#define LIBPEPHELLOWORLD_HELLO_WORLD_HH
|
|
|
|
#include <string>
|
|
|
|
namespace pEp {
|
|
namespace HelloWorld {
|
|
// non-template functions and classes
|
|
// impl in .cc
|
|
std::string hello_world();
|
|
|
|
// template functions and classes
|
|
// impl in .hxx
|
|
template<typename T>
|
|
T hello_world(T param1);
|
|
} // namespace HelloWorld
|
|
} // namespace pEp
|
|
|
|
#include "hello_world.hxx"
|
|
|
|
#endif // LIBPEPHELLOWORLD_HELLO_WORLD_HH
|
|
|