DataMatrix

Description

Holds information about DataMatrix: its position and text which is encoded.

Structure fields and default values (if defined) are described below:

struct DataMatrix
{
	Rectangle2D		Position;
	String			Text;
	DataMatrixType	Type;


	Rectangle2D Position( void ) const	{ return Position;	};
	String Text( void ) const			{ return Text;		};
	DataMatrixType Type( void ) const	{ return Type;		};

	bool operator == ( const avl::DataMatrix& rhs ) const
	{
		return Position == rhs.Position && 
			Text == rhs.Text && 
			Type == rhs.Type;
	}

	bool operator != ( const avl::DataMatrix& rhs ) const
	{
		return !(operator==(rhs));
	}

};