I'm looking for a template class that'll let me setup aribtrarily wide tables. Something like this:
std::table< int, int, float, int > myTable; ... iter = myTable.find( int, int, float ); Or something like that. The goal is to setup some lookup tables and reuse the same code for each one, even though they have different numbers of columns and different typed columns. It needs to be self-contained in the code, so something like SQLite is out. Any ideas? --Dave .===================================. | This has been a P.L.U.G. mailing. | | Don't Fear the Penguin. | | IRC: #utah at irc.freenode.net | `==================================='
