Re: using templates and separating the files in .h and .cpp

2006-11-14 Thread Paul Pluzhnikov
"aaragon" <[EMAIL PROTECTED]> writes: >> Another alternative is to manually manage instantiation via explicit >> instantiation requests. > > What do you mean by "explicit instantiation requests"? Please trim your replies. Typing "C++ explicit instantiation request" into google will yield many ex

Re: using templates and separating the files in .h and .cpp

2006-11-14 Thread aaragon
Paul Pluzhnikov wrote: > "aaragon" <[EMAIL PROTECTED]> writes: > > > I'm using the g++ compiler, and I run into a problem when I try to > > separate the declaration in the .h file from the implementation in the > > .cpp file. It seems that when I do this, I have linking problems (only > > when I

Re: using templates and separating the files in .h and .cpp

2006-11-14 Thread Paul Pluzhnikov
"aaragon" <[EMAIL PROTECTED]> writes: > I'm using the g++ compiler, and I run into a problem when I try to > separate the declaration in the .h file from the implementation in the > .cpp file. It seems that when I do this, I have linking problems (only > when I use templates in the declarations).

using templates and separating the files in .h and .cpp

2006-11-14 Thread aaragon
Hi everyone, I'm using the g++ compiler, and I run into a problem when I try to separate the declaration in the .h file from the implementation in the .cpp file. It seems that when I do this, I have linking problems (only when I use templates in the declarations). Does anyone know why is this?