Guest User

Untitled

a guest
Jun 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class ReferenceCounted
  2. {
  3. void retain()
  4. {
  5. ++m_refs;
  6. }
  7.  
  8. void drop()
  9. {
  10. --m_refs;
  11. if(!m_refs)
  12. delete this;
  13. }
  14.  
  15. private:
  16. virtual ~ReferenceCounted() { }
  17. int m_refs;
  18. };
Add Comment
Please, Sign In to add comment