home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / som / include / somr.idl < prev    next >
Text File  |  1999-02-22  |  1KB  |  52 lines

  1. //
  2. //   COMPONENT_NAME: somr
  3. //
  4. //   ORIGINS: 27
  5. //
  6. //
  7. //   10H9767, 10H9769  (C) COPYRIGHT International Business Machines Corp. 1992,1994
  8. //   All Rights Reserved
  9. //   Licensed Materials - Property of IBM
  10. //   US Government Users Restricted Rights - Use, duplication or
  11. //   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  12. //
  13. //#  @(#) 2.9 src/somr/somr.idl, somr, som2.1 9/1/94 15:53:16 [7/30/96 14:49:34]
  14.  
  15.  
  16.  
  17. #ifndef somr_idl
  18. #define somr_idl
  19.  
  20. #include <somobj.idl>
  21. #include <snglicls.idl>
  22.  
  23. interface SOMR : SOMObject
  24.  
  25. //This class creates one of a kind managers needed for the replication framework.
  26. //Any application wanting to use the framework must create an instance of this
  27. //class at the very beginning (for example,  in its main program).
  28.  
  29. {
  30.  
  31.   #ifdef __SOMIDL__
  32.  
  33.   implementation
  34.   {
  35.      callstyle=idl;
  36.  
  37.      // Class Modifiers
  38.      majorversion = 2;
  39.      minorversion = 1;
  40.      filestem = somr;
  41.      metaclass = SOMMSingleInstance;
  42.  
  43.      // Method Modifiers
  44.      somInit: override;
  45.  
  46.    };
  47.    #endif /* __SOMIDL__ */
  48.  
  49. };
  50. #endif  /* somr_idl */
  51.  
  52.