18int main(
int argc, 
char **argv)
 
   27    JParser<> zap(
"Example program to test hash map.");
 
   33  catch(
const exception &error) {
 
   34    FATAL(error.what() << endl);
 
   40  typedef JTuple  <typelist>                      key_type;
 
   45  buffer[1][1][3] = 
"mies";
 
   46  buffer[2][1][2] = 
"noot";
 
   47  buffer[3][1][1] = 
"aap";
 
   49  key_type key(2, 4, 6);
 
   51  buffer.put(key, 
"hello world");
 
   53  cout << 
"Has " << key << 
" ? " << buffer.has(key) << endl;
 
   56  for (hash_map::super_iterator i = buffer.super_begin(); i != buffer.super_end(); ++i) {
 
   60  for (hash_map::const_iterator i0 = buffer.begin(); i0 != buffer.end(); ++i0) {
 
   61    for (hash_map::mapped_type::const_iterator i1 = i0->second.begin(); i1 != i0->second.end(); ++i1) {
 
   62      for (hash_map::mapped_type::mapped_type::const_iterator i2 = i1->second.begin(); i2 != i1->second.end(); ++i2) {
 
   63        cout << i0->first << 
' ' << i1->first << 
' ' << i2->first << 
' ' << i2->second << endl;
 
   68  for (hash_map::super_const_iterator i = buffer.super_begin(); i != buffer.super_end(); ++i) {
 
   69    cout << i.getKey() << 
' ' << i.getValue() << endl;
 
 
int main(int argc, char **argv)
General purpose class for hash map of unique elements.
General purpose messaging.
General purpose class for multidimensional hash maps.
Utility class to parse command line options.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
Utility class to parse command line options.
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).