i create a template class with a constructor but don't know why i get this error
datalib.cpp: In function ‘int main()’:
datalib.cpp:260:20: error: invalid conversion from ‘Queue<int>*’ to ‘int’ [-fpermissive]
260 | Queue<int> queue = new Queue<int>(200);
| ^~~~~~~~~~~~~~~~~~~
| |
| Queue<int>*
datalib.cpp:208:11: note: initializing argument 1 of ‘Queue<T>::Queue(int) [with T = int]’
208 | Queue(int capacity){
| ~~~~^~~~~~~~