#include <iostream>#include <TMath.h>#include "card_pairs.h"Go to the source code of this file.
Functions | |
| ostream & | operator<< (ostream &stream, const card_pairs &pairs) |
|
||||||||||||
|
Definition at line 24 of file card_pairs.cxx. 00025 {
00026 map<string, card_pair *>::const_iterator pair_iter;
00027
00028 stream << "Contained card_pairs: " << endl;
00029
00030 for(pair_iter = pairs._card_pairs_map.begin();
00031 pair_iter != pairs._card_pairs_map.end(); ++pair_iter) {
00032
00033 stream << "card_pair: " << pair_iter->first << ": " << endl;
00034 stream << *(pair_iter->second);
00035 }
00036 return stream;
00037 }
|
1.3.9.1