home *** CD-ROM | disk | FTP | other *** search
-
- /* RemoteServer.m - written by Robert Vasvari 8/94
-
- This class is the server interface for Distributed
- Objects Access to DocViewer. This object passes
- the remote messages through to the Application's
- delegate.
-
- */
-
- #import <appkit/appkit.h>
- #import <remote/NXProxy.h> /* setProtocolForProxy */
-
- @interface RemoteServer:Object <NXSenderIsInvalid>
- {
- }
-
- /* the three utility methods */
- - init;
- - doesNotRecognize:(SEL)aSelector;
- - senderIsInvalid:sender;
-
- /* the remote methods */
- - hide:sender;
- - newDocument:sender;
- - openDocument:(const char *)aPath;
-
-
- @end
-