c++ Programming Glossary: deletesome
C++ template partial specialization - specializing one member function only http://stackoverflow.com/questions/1757791/c-template-partial-specialization-specializing-one-member-function-only public void addSome T o printf adding that object... void deleteSome T o printf deleting that object... template typename T class.. that object... template typename T class foo T public void deleteSome T o printf deleting that PTR to an object... The user code foo.. public void addSome T o printf adding that object... void deleteSome T o printf deleting that object... template typename T class..
|