1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef STRINGDATA_H # define STRINGDATA_H #include "Data.h" #include "String.h" @interface StringData: DataObject { String *data; } -free; @end #endif