Guest User

Untitled

a guest
May 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <iostream>
  2. #include "FooBar.hpp"
  3.  
  4. FooBar::FooBar()
  5. {
  6. std::cout << "constructor" << std::endl;
  7. }
  8.  
  9. FooBar::~FooBar()
  10. {
  11. std::cout << "destructor" << std::endl;
  12.  
  13. }
Add Comment
Please, Sign In to add comment