QRCode

Description

Holds information about QR code: its position, version and text which is encoded.

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

struct QRCode
{
	Path	Position;
	String	Text;
	Integer	Version;


	Path Position() const	{ return Position;	};
	String Text() const		{ return Text;		};
	Integer Version() const	{ return Version;	};

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

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

};