home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993 Robert Davis
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of Version 2, or any later version, of
- * the GNU General Public License as published by the Free Software
- * Foundation.
- */
-
- /* $Id: SubObject.h,v 1.3 1993/05/04 16:22:57 davis Exp $ */
-
- #import <objc/Object.h>
-
- @interface SubObject:Object
- {
- char *stringValue;
- }
-
- - init;
- - initFromString:(const char *)aString;
-
- - setStringValue: (const char *)aString;
- - (const char *)stringValue;
-
- - (BOOL)isAttachment; /* Returns NO */
-
- @end
-