Files
nethogs/hashtest.cpp
Arnout Engelen be624683f0 Initial import.
2004-06-29 13:31:04 +00:00

12 lines
227 B
C++

#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;
}