Add RD for a queuelist class using templates

This commit is contained in:
2020-07-30 19:08:59 -04:00
parent 4fe1fc106b
commit 23eb29ea0d
3 changed files with 49 additions and 31 deletions

View File

@@ -19,10 +19,10 @@ int main()
{
std::cout << "Driver: \n";
StackList testList;
StackList<TYPE> testList;
bool exit = false;
int choice = -1;
int val;
TYPE val;
while (!exit)
{