template <typename T>
FastQueue<T>::FastQueue() //default constructor
{
...stuff
}
-----------------------------------------------------------
when i compile both these files with my main im getting an error saying no template name FastQueue on my cpp file but i checked all myheaders and they are there
when i move all mycpp functions into myh file it works but i want 2 files an h file and a cpp file