Skip to content

Instantly share code, notes, and snippets.

@ryardley
Created January 1, 2019 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryardley/98d50335ee876c07cc687e95f8c65b0c to your computer and use it in GitHub Desktop.
Save ryardley/98d50335ee876c07cc687e95f8c65b0c to your computer and use it in GitHub Desktop.
#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