- the dynamic arrays. The "DECLARE" macro declares a
- new container class containing the elements of given type and is needed for all
- three types of container classes: lists, arrays and objarrays. The "DEFINE"
- classes must be inserted in your program in a place where the @b full
- declaration of container element class is in scope (i.e. not just forward
- declaration), otherwise destructors of the container elements will not be
- called! As array classes never delete the items they contain anyhow, there is
+ the dynamic arrays.
+
+ The "DECLARE" macro declares a new container class containing the elements of
+ given type and is needed for all three types of container classes: lists,
+ arrays and objarrays. The "DEFINE" classes must be inserted in your program
+ in a place where the @b full declaration of container element class is in scope
+ (i.e. not just forward declaration), otherwise destructors of the container
+ elements will not be called!
+
+ As array classes never delete the items they contain anyhow, there is