Hey all... well I found a viable solution to the problem and it looks
like I was on the right track with the inheritance thing:
class __declspec(import) TokenList : public LinkedList<Token> {};
As long as I make sure the class gets exported, it forces all the
members of the template to be compiled into the dll.. and walla!!..
everything is allocated in dll-space...
Thanks to everyone who contributed.... You guys have been really
helpful

I'll be sure to jump back to this forum whenever I get a chance and
help you guys out once in a while