Text.h
author viric@llimona
Thu, 18 May 2006 23:12:51 +0200
changeset 0 6b8091ca909a
permissions -rw-r--r--
Init from working directory of svn repository.

#include <vector>
#include "Rectangle.h"
#include "Bitmap.h"

using namespace std;

class Text
{
	vector<Rectangle> Lines;

public:
	void getLines(Bitmap *map);

	// Constants
	static const int MinVertSeparation=3;
	static const int MinLineSize=5;
	static const int NoiseTolerance=6;
};