home *** CD-ROM | disk | FTP | other *** search
- #import <objc/Object.h>
-
- /* The ErrorStream class allows clients of XText to customize its error
- handling. All errors are reported by invoking the report: method on
- a client-supplied ErrorStream. The default implementation simply puts
- the message up in a modal panel, but you can create subclasses that do
- more interesting things if you like.
-
- By default, all instances of XText share a single instance of ErrorStream,
- which can be obtained by calling [ErrorStream default].
- */
-
- @interface ErrorStream:Object
- {
- }
- + default;
- - report: (const STR) msg;
- @end
-
-