#include <string>
#include <list>
#include <map>
#include <iostream>
#include "BESContainer.h"
#include "BESException.h"
Go to the source code of this file.
Classes | |
struct | _BESDataHandlerInterface |
Structure storing information used by the BES to handle the request. More... | |
Defines | |
#define | BESDataHandlerInterface_h_ 1 |
Typedefs | |
typedef struct _BESDataHandlerInterface | BESDataHandlerInterface |
Functions | |
ostream & | operator<< (ostream &strm, const BESDataHandlerInterface &dhi) |
dump the contents of the specified data handler interface to the specified ostream |
#define BESDataHandlerInterface_h_ 1 |
Definition at line 34 of file BESDataHandlerInterface.h.
typedef struct _BESDataHandlerInterface BESDataHandlerInterface |
ostream& operator<< | ( | ostream & | strm, | |
const BESDataHandlerInterface & | dhi | |||
) | [inline] |
dump the contents of the specified data handler interface to the specified ostream
This inline method uses the dump method of the BESDataHandlerInterface instance passed to it. This allows a user to dump the contents of the structure instead of just getting the pointer value of the object.
For example:
BESDataHandlerInterface dhi ; cout << dhi << endl ;
And the dump method for dhi would display the internal information of the data handler interface for debugging purposes.
strm | C++ i/o stream to dump the object to | |
dhi | The BESDataHandlerInterface to dump |
Definition at line 157 of file BESDataHandlerInterface.h.
References _BESDataHandlerInterface::dump().