From 56a3380b46f406ffaf093405ac2db4515b0a4f80 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Mon, 28 May 2012 16:44:39 +0000 Subject: Removes the ArrayList classes, and replaces all instances with std::vector implementations. --- nGenEx/FormDef.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'nGenEx/FormDef.h') diff --git a/nGenEx/FormDef.h b/nGenEx/FormDef.h index c483a35..1fad78d 100644 --- a/nGenEx/FormDef.h +++ b/nGenEx/FormDef.h @@ -15,11 +15,11 @@ #ifndef FormDef_h #define FormDef_h +#include #include "Types.h" #include "Geometry.h" #include "Color.h" #include "Text.h" -#include "ArrayList.h" #include "List.h" // +--------------------------------------------------------------------+ @@ -66,10 +66,10 @@ class LayoutDef public: static const char* TYPENAME() { return "LayoutDef"; } - ArrayList x_mins; - ArrayList y_mins; - FloatList x_weights; - FloatList y_weights; + std::vector x_mins; + std::vector y_mins; + std::vector x_weights; + std::vector y_weights; }; // +--------------------------------------------------------------------+ -- cgit v1.1