<?php

class EditCommand
{
	const AddPoint		= 1;
	const AddLine		= 2;
	const AddLineString	= 3;
	const AddRectangle	= 4;
	const AddPolygon	= 5;
	const Delete		= 6;
	const Update		= 7;
}

?>