Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 10th, 2012  |  syntax: C++  |  size: 0.14 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. };