¡@

Home 

c++ Programming Glossary: linkedarraylist

Argument list for class template is missing

http://stackoverflow.com/questions/15283195/argument-list-for-class-template-is-missing

quite sure what the issue is. I'm creating a class called LinkedArrayList that uses a typename template as shown in the code below #pragma.. code below #pragma once template typename ItemType class LinkedArrayList private class Node ItemType items Node next Node prev int capacity.. file gives me the error Argument list for class template 'LinkedArrayList' is missing. It also says that ItemType is undefined. Here is..