home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / Rhapsody / Publishing / PDFConvert-0.1 / PDFConverter.h < prev    next >
Encoding:
Text File  |  1998-01-03  |  334 b   |  17 lines

  1. #import <AppKit/AppKit.h>
  2.  
  3. @interface PDFConverter : NSObject
  4. {
  5.     id convertToPS;
  6.     id convertToText;
  7.     id inputFileName;
  8.     id openFileAfterConversion;
  9.     id outputFileName;
  10.     id userMessage;
  11.  
  12. }
  13. - (void)convert:(id)sender;
  14. - (void)setInputFileNameFromButton:(id)sender;
  15. - (void)setOutputFileNameFromButton:(id)sender;
  16. @end
  17.