Facebook
From Colorant Stork, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 241
  1. List<string>* List<T>::pcToString()
  2.         {
  3.                 return nullptr;
  4.         }
  5.  
  6.        
  7.         List<string>* List<int>::pcToString<int>()
  8.         {
  9.                 int iVal = 0;
  10.                 List<string> * pcListToRet = new List<string>;
  11.                 for (int i = 0; i < iGetSize(); i++)
  12.                 {
  13.                         bGetElement(i, iVal);
  14.                         pcListToRet->bInsert(to_string(iVal), pcListToRet->iGetSize());
  15.                 }
  16.                 return pcListToRet;
  17.         }