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

  1. //
  2. //   COMPONENT_NAME: somp
  3. //
  4. //   ORIGINS: 27
  5. //
  6. //
  7. //    25H7912  (C)  COPYRIGHT International Business Machines Corp. 1992,1994,1996 
  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/somp/nsma.idl, somp, som2.1 12/26/95 16:58:33 [7/30/96 14:46:56]
  14.  
  15.  
  16.  
  17. #ifndef nsma_idl
  18. #define nsma_idl
  19.  
  20. #include <somobj.idl>
  21. #include <snglicls.idl>
  22. #include <somp.idl>
  23. #include <somperrd.idl>
  24.  
  25. interface Iterator;
  26. interface SOMPIOGroup;
  27. interface dictKeyInt;
  28. interface dictKeyChar;
  29. interface SOMPKeyedSet;
  30. interface SOMPPersistentId;
  31. interface SOMPPersistentObject;
  32.  
  33. interface SOMPNameSpaceMgr : SOMObject
  34.  
  35. // This class is responsible for mapping persistent IDs
  36. // to persistent objects and groups of objects.
  37. //
  38. // The NameSpaceMgr maintains a set of IO Group objects.
  39. //
  40. // All objects which have been restored by the Persistent Storage Mgr
  41. // can be reached by the single instance of the NameSpaceMgr maintained
  42. // for the persistence framework. (See psm.csc)
  43.  
  44. {
  45.  
  46. #ifdef __SOMIDL__
  47.  
  48. implementation
  49. {
  50.     callstyle=idl;
  51.     dllname="somp.dll";
  52.  
  53.     releaseorder: sompFindPersistentObjectById, sompFindGroupById,
  54.           sompRegisterGroup, sompUnRegisterGroup;
  55.  
  56. // Class Modifiers
  57.    majorversion = 2;
  58.    minorversion = 1;
  59.    filestem = nsma;
  60.    metaclass = SOMMSingleInstance;
  61.  
  62.  
  63. // Method Modifiers
  64.    somInit: override;
  65.    somUninit: override;
  66.    somDumpSelfInt: override;
  67.  
  68. };
  69. #endif /* __SOMIDL__ */
  70.  
  71. };
  72.  
  73.  
  74. #endif  /* nsma_idl */
  75.