Ejemplo n.º 1
0
bool
tStrSet( LibTest & tester )
{
  {
    TestSet    t;
    
    const char * string[] = {"one","two","three","four", 0};

    for( size_t f = 0; string[f]; f++ )
      {
	cout << f << endl;
	t.insert( string[f] );
      }
    
    for( TestSet::iterator  them = t.begin();
	 them != t.end();
	 them++ )
      {
	cout << (*them) << endl;
      }
    
  }
  return( true );
}