IterativeLookup.cc File Reference


Detailed Description

Author:
Sebastian Mies

#include <iostream>
#include <assert.h>
#include <UnderlayConfigurator.h>
#include <LookupListener.h>
#include <BaseOverlay.h>
#include <GlobalStatistics.h>
#include "IterativeLookup.h"

Functions

std::ostream & operator<< (std::ostream &os, const LookupEntry &n)
std::ostream & operator<< (std::ostream &os, const LookupVector &n)


Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const LookupVector n 
)

00055 {
00056     for (LookupVector::const_iterator i=n.begin(); i !=n.end(); i++) {
00057         os << *i;
00058         if (i+1 != n.end()) {
00059             os << endl;
00060         }
00061     }
00062 
00063     return os;
00064 };

std::ostream& operator<< ( std::ostream &  os,
const LookupEntry n 
)

00047 {
00048     os << "handle: " << n.handle << " source: " << n.source
00049        << " alreadyUsed: " << n.alreadyUsed;
00050 
00051     return os;
00052 };


Generated on Fri Sep 19 13:05:05 2008 for ITM OverSim by  doxygen 1.5.5