Skip to content

Instantly share code, notes, and snippets.

@meshell
Last active February 22, 2016 21:05
Show Gist options
  • Save meshell/cc5048f9ff10a0c80e38 to your computer and use it in GitHub Desktop.
Save meshell/cc5048f9ff10a0c80e38 to your computer and use it in GitHub Desktop.
Rule of Zero
#include <string>
class foo {
public:
// Constructor
foo(const std::string& arg) : cppstring(arg) {}
private:
std::string cppstring
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment