Guest User

Untitled

a guest
Jul 10th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. class RefCounting
  2. {
  3.     vector<String*> list;
  4. public:
  5.     RefCounting();
  6.  
  7.     void Notify();
  8.     void Add(String* string);
  9.  
  10.     ~ReCounting();
  11. };
Advertisement
Add Comment
Please, Sign In to add comment