c 2b 2b argument list for class template is missing

Solutions on MaxInterview for c 2b 2b argument list for class template is missing by the best coders in the world

showing results for - "c 2b 2b argument list for class template is missing"
Aurélie
11 Mar 2016
1#include "LinkedArrayList.h"
2
3template<typename ItemType>
4void LinkedArrayList<ItemType>::insert (int index, const ItemType& item)
5{}
6
7template<typename ItemType>
8ItemType LinkedArrayList<ItemType>::remove (int index)
9{return ItemType();}
10
11template<typename ItemType>
12int LinkedArrayList<ItemType>::find (const ItemType& item)
13{return -1;}
14