Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created January 18, 2017 14:20
Show Gist options
  • Save kopiro/4a2ec03b7a5cc580b293293b97dd8d8c to your computer and use it in GitHub Desktop.
Save kopiro/4a2ec03b7a5cc580b293293b97dd8d8c to your computer and use it in GitHub Desktop.
Test RAII Class
#include <iostream>
class Two {
public:
void test() { std::cout << "Hello"; }
};
class TwoRAII {
public:
Two* two;
TwoRAII() : two(new Two()) { }
~TwoRAII() { delete this->two; }
};
int main() {
TwoRAII tr;
tr.two->test();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment