Guest User

Untitled

a guest
Apr 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. template <class T>
  2. void RefCountPtrT<T>::setVal(T val) {
  3. ptr->setVal(val);
  4. }
  5.  
  6. template <class T>
  7. T RefCountPtrT<T>::getVal() {
  8. return ptr->getVal();
  9. }
Add Comment
Please, Sign In to add comment