@@ -15,10 +15,11 @@ */ #import "OFObject.h" #import "OFCollection.h" #import "OFEnumerator.h" +#import "OFSerialization.h" typedef struct of_list_object_t of_list_object_t; /** * \brief A list object. * @@ -35,11 +36,12 @@ }; /** * \brief A class which provides easy to use double-linked lists. */ -@interface OFList: OFObject +@interface OFList: OFObject { of_list_object_t *firstListObject; of_list_object_t *lastListObject; size_t count; unsigned long mutations;