Hi David, Thanks for you response. On Thu, 2005-03-31 at 14:51 -0500, David Abrahams wrote:
char const test_string[] = "TestStringName";
A pointer or reference to test_string can be used as a template parameter as long as test_string is declared at namespace scope.
Right. Something like what's on page 41 of Vandevoorde and Josuttis?
Something like
#include <iostream>
using namespace std;
extern char const test_string[] = "TestStringName";
template