#include "BitmapFont.h" ostream& operator<<(ostream &os,const BitmapFont &bf){ os << "width= " << bf.getWidth() <<",height=" << bf.getHeight() <<"\n"; for(int y=0;y::iterator it; for(it=bf.pixels.begin();it!=bf.pixels.end();it++) os << '(' << (*it).first << ',' << (*it).second << ')'; os << "\n"; return os; }