#include <objc/Object.h>
#include <stdio.h>

@interface MyObj : Object
{
	char str[100];
}

//@public
- free;
- print;
- printToFile : (FILE*)fp;

//@private
- fillString;

@end
