Text.h
changeset 0 6b8091ca909a
equal deleted inserted replaced
-1:000000000000 0:6b8091ca909a
       
     1 #include <vector>
       
     2 #include "Rectangle.h"
       
     3 #include "Bitmap.h"
       
     4 
       
     5 using namespace std;
       
     6 
       
     7 class Text
       
     8 {
       
     9 	vector<Rectangle> Lines;
       
    10 
       
    11 public:
       
    12 	void getLines(Bitmap *map);
       
    13 
       
    14 	// Constants
       
    15 	static const int MinVertSeparation=3;
       
    16 	static const int MinLineSize=5;
       
    17 	static const int NoiseTolerance=6;
       
    18 };