home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / Papers / aSEPiA example source / Interfaces / IPluginInfoIntf.h < prev   
Encoding:
C/C++ Source or Header  |  1999-06-25  |  490 b   |  24 lines  |  [TEXT/CWIE]

  1. /*---------------------------------------------------------------
  2.  
  3.     IPluginInfoIntf.h
  4.     
  5.     Interface for getting informatio about the plugin such as its
  6.     name and version.
  7.     
  8. ---------------------------------------------------------------*/
  9.  
  10. #ifndef IPluginInfoIntf_H
  11. #define IPluginInfoIntf_H
  12.  
  13.  
  14. const unsigned long IPluginInfo_ID     = 'PInf';
  15.  
  16. class IPluginInfoIntf
  17. {
  18. public:
  19.     virtual void    GetPluginName( char* outName ) = 0;
  20.     virtual void    GetPluginVersion( short* outVersion ) = 0;
  21.  
  22. };
  23.  
  24. #endif