00001
00002
00003
00004
00005 #ifndef _BIEdebug_h
00006 #define _BIEdebug_h
00007
00008 #include <ostream>
00009
00010 using namespace std;
00011
00012 namespace BIE {
00013
00014 class Frontier;
00015
00016 void printFrontierTiles(Frontier * frontier);
00017 void printFrontierTiles(Frontier * frontier, ostream& out);
00018 void printFrontierTilesSM(Frontier * frontier);
00019
00020 }
00021
00022 #endif