Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. class Foo {
  2. public:
  3. explicit Foo(){}
  4. ~Foo() {
  5. delete this->bar;
  6. }
  7.  
  8. private:
  9. const Baz* bar = new Baz();
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement