Templates in .cpp files not being included?

2005-01-16 Thread Evan Ovadia (Verdagon)
I'm in the process of rewriting my project to have multiple .cpp files instead of a huge tree of .h files, but I'm running into a very frustrating problem. I have the frame of the application in a file called E-Frame.cpp. Then there's the source code for my templated linked list class, the VList

Re: Templates in .cpp files not being included?

2005-01-16 Thread Ben Combee
Template implementations have to be in the header file, since there is no mechansim for the compiler to generate template instances after compilation. -Original Message- From: "Evan Ovadia (Verdagon)" <[EMAIL PROTECTED]> Subj: Templates in .cpp files not being included