Created
January 1, 2019 22:09
-
-
Save ryardley/98d50335ee876c07cc687e95f8c65b0c 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
#pragma once | |
#include "hello_world.hpp" | |
namespace helloworld { | |
class HelloWorldImpl : public helloworld::HelloWorld { | |
public: | |
// Constructor | |
HelloWorldImpl(); | |
// Our method that returns a string | |
std::string get_hello_world(); | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment