Created
January 1, 2019 22:14
-
-
Save ryardley/09790577ceb8f5236d8e9a27c2f62769 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "hello_world_impl.hpp" | |
#include <string> | |
namespace helloworld { | |
std::shared_ptr<HelloWorld> HelloWorld::create() { | |
return std::make_shared<HelloWorldImpl>(); | |
} | |
HelloWorldImpl::HelloWorldImpl() { | |
} | |
std::string HelloWorldImpl::get_hello_world() { | |
std::string myString = "C++ says Hello World!"; | |
return myString; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment