enumerator is a language feature used to define a set of constants. It is usually used when you have to declare more than 4 constants, instead of typing const a hundred times, you define an enumerator in the form:
Code:
enum <enum_name>
CONST_NAME1 := <value>,
CONST_NAME2 := <value>,
CONST_NAME3 := <value>,
CONST_NAME4 := <value>
endenum
<enum_name> any string value name such as MY_ENUMARATION, and <value>, whatever can be defined as a constant.
edit: you can check the distro SVN repository for more examples.