Re: template parameters

2005-12-05 Thread Mike Trotman
is for specifying parameter names (and default values) immediately following a template declaration. Hard to tell why your example is failing as you haven't supplied a full working example. Once you are inside the template you treat them as normal variables. If your example is failing then it

Re: template parameters

2005-12-05 Thread Chris Bowditch
Johan wrote: Hi all... I'm having trouble getting parameter values into my templates. I specify the parameter like this : 1234567890 But I always get 'unknown'. I've tried not specifying any value, but then the parameter is empty. The problem is you try to invoke the

template parameters

2005-12-05 Thread Johan
Hi all... I'm having trouble getting parameter values into my templates. I specify the parameter like this : 1234567890 And I try to read it like this: unknown But I always get 'unknown'. I've tried not specifying any value, but then the parameter i