Skip to content

Instantly share code, notes, and snippets.

@kasramp

kasramp/test.cpp Secret

Created August 1, 2020 23:09
Show Gist options
  • Save kasramp/14fc2c40c8a4cd53c375d2083147c1a9 to your computer and use it in GitHub Desktop.
Save kasramp/14fc2c40c8a4cd53c375d2083147c1a9 to your computer and use it in GitHub Desktop.
class Test {
protected:
private:
public:
int x;
Test();
MyMethod();
};
Test::Test() : x(10) { }
// or
Test::Test() {
x = 10;
}
int Test::MyMethod() {
x = 10;
}
// or
int Test::MyMethod(): x(10) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment