Skip to content

Instantly share code, notes, and snippets.

@segfo
Created October 11, 2015 12:25
Show Gist options
  • Save segfo/c79951f341fc22698a67 to your computer and use it in GitHub Desktop.
Save segfo/c79951f341fc22698a67 to your computer and use it in GitHub Desktop.
#pragma once
class TestClass
{
public:
TestClass();
TestClass(char *s);
~TestClass();
void Print();
private:
char* s = nullptr;
char* sn = nullptr;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment