home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / AIAT / Headers / Analysis / SimpleAnalysis.h < prev    next >
Encoding:
Text File  |  1998-04-16  |  701 b   |  38 lines  |  [TEXT/CWIE]

  1. // SimpleAnalysis.h
  2. //    Copyright:    © 1994 - 1998 by Apple Computer, Inc., all rights reserved.
  3.  
  4. #pragma once
  5. #ifndef SimpleAnalysis_h
  6. #define SimpleAnalysis_h
  7.  
  8. #pragma import on
  9.  
  10. #if PRAGMA_STRUCT_ALIGN
  11.     #pragma options align=power
  12. #endif
  13.  
  14. #include "IAAnalysis.h"
  15.  
  16. #pragma IA_BEGIN_EXPORTS
  17.  
  18. const uint32        SimpleAnalysisType = 'Sim1';
  19.  
  20. class SimpleAnalysis : public IAAnalysis {
  21. public:
  22.                     SimpleAnalysis() : IAAnalysis(SimpleAnalysisType) {}
  23. //                    SimpleAnalysis(SimpleAnalysis& sa) : IAAnalysis(sa) {}
  24.  
  25.     IATokenStream*    MakeTokenStream(IADocText* text);
  26.     IATerm*            GetProtoTerm();
  27. };
  28.  
  29. #pragma IA_END_EXPORTS
  30.  
  31. #if PRAGMA_STRUCT_ALIGN
  32.     #pragma options align=reset
  33. #endif
  34.  
  35. #pragma import reset
  36.  
  37. #endif
  38.