#include #include "blank.h" @implementation Blank { id str; } -init { [self setBlank:@"hiya"]; return self; } -free { return [super free]; } -getBlank { return str; } -setBlank:(id)bleh { str = bleh; return self; } @end