diff options
Diffstat (limited to 'tests/common/libhello-1.0.0/libhello/hello.hxx')
-rw-r--r-- | tests/common/libhello-1.0.0/libhello/hello.hxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/common/libhello-1.0.0/libhello/hello.hxx b/tests/common/libhello-1.0.0/libhello/hello.hxx new file mode 100644 index 0000000..58bd7b2 --- /dev/null +++ b/tests/common/libhello-1.0.0/libhello/hello.hxx @@ -0,0 +1,13 @@ +// file: libhello/hello.hxx -*- C++ -*- + +#pragma once + +#include <string> + +#include <libhello/export.hxx> + +namespace hello +{ + LIBHELLO_EXPORT void + say (const std::string& name); +} |