Initial import.

This commit is contained in:
Arnout Engelen
2004-06-29 13:31:04 +00:00
commit be624683f0
21 changed files with 1804 additions and 0 deletions

11
hashtest.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <iostream>
#include "hashtbl.h"
void main ()
{
HashTable * table = new HashTable (10);
table->add("Foo", (void*)"Bar");
table->add("Baz", (void*)"Qux");
cout << "Foo is " << (char*)(table->get("Foo")) << endl;
}