home *** CD-ROM | disk | FTP | other *** search
- // GopherBrowserCell.h
-
- #import <appkit/NXBrowserCell.h>
- #import <stdio.h>
- #import <strings.h>
- #import <appkit/Font.h>
- #import <appkit/Text.h>
-
- @interface GopherBrowserCell:NXBrowserCell
- {
- char RemoteName[512];
- char RemoteHost[128];
- int RemotePort;
- char Type;
- }
-
- - setTextAttributes:textObj;
-
- - setRemoteName:(char *)name;
- - (char *)remoteName;
- - setRemoteHost:(char *)name;
- - (char *)remoteHost;
- - setRemotePort:(int)port;
- - (int)remotePort;
- - setCellType:(char)type;
- - (char)cellType;
-
- @end
-