home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dtswps.zip / DTSFILES.ZIP / DTM.EFW < prev    next >
Text File  |  1996-05-07  |  5KB  |  208 lines

  1. :copyrightS
  2. /* @(#) /32 1.6 5/7/96 15:02:24 [5/7/96 15:02:26] */
  3. /*
  4.  *   COMPONENT_NAME: some
  5.  *
  6.  *   ORIGINS: 27
  7.  *
  8.  *
  9.  *   10H9767, 25H7912  (C) COPYRIGHT International Business Machines Corp. 1992,1996 
  10.  *   All Rights Reserved
  11.  *   Licensed Materials - Property of IBM
  12.  *   US Government Users Restricted Rights - Use, duplication or
  13.  *   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  14.  */
  15.  
  16. :headerS
  17. // Generated from <classSourceFile> at <NLSTimeStamp>
  18. // By IBM DTS C++ implementation template emitter version <release>.<version>
  19. // Using dtm.efw file version 1.6
  20. #include \<<classSourceFileStem>.hh>
  21.  
  22. :modulePrologS
  23. /*
  24.  * Begin implementation of module <moduleName> 
  25.  */
  26. ?<-- moduleComment>
  27.  
  28. :prologS
  29. /* 
  30.  * Begin implementation of interface <classIDLScopedName> 
  31.  */
  32. ?<-- classComment>
  33.  
  34. :DTSDefaultsS
  35. // default ctor for dtsdefaults
  36. <classIDLScopedName>::<cppClassNameNP>()
  37. {
  38. }
  39.  
  40. :NonDTSSpecialsS
  41. <classIDLScopedName>::<cppClassNameNP>()
  42. {
  43. }
  44.  
  45. <classIDLScopedName>::<cppClassNameNP>(<cppClassName>& fromObj)
  46. {
  47. }
  48.  
  49. <classIDLScopedName>::~<cppClassNameNP>()
  50. {
  51. }
  52.  
  53. #ifdef __EXTENDED__SOM__ASSIGNMENTS__
  54.    <classIDLScopedName>::<cppClassNameNP>& somAssign(<cppClassName>& fromObj)
  55.    {
  56.    }
  57. #else
  58.    SOMObject* <classIDLScopedName>::somDefaultAssign(som3AssignCtrl*, SOMObject* fromObj)
  59.    {
  60.    }
  61. #endif
  62.  
  63. :methodsS
  64. ?<-- methodComment>
  65. <methodCppReturnType> <classIDLScopedName>::<methodCppName>(<methodCppParamList, ...>)
  66. {
  67. }
  68.  
  69. :getAttrS
  70. ?<-- methodComment>
  71. <methodCppReturnType> <classIDLScopedName>::<methodCppName>(<methodCppParamList, ...>) const
  72. {
  73. }
  74.  
  75. :getStaticAttrS
  76. ?<-- methodComment>
  77. <methodCppReturnType> <cppClassName>::__som_staticdata__<staticDataName>;
  78. <methodCppReturnType> <classIDLScopedName>::<methodCppName>(<methodCppParamList, ...>) const
  79. {
  80.    return __som_staticdata__<staticDataName>;
  81. }
  82.  
  83. :setAttrS
  84. ?<-- methodComment>
  85. <methodCppReturnType> <classIDLScopedName>::<methodCppName>(<methodCppParamList, ...>)
  86. {
  87. }
  88.  
  89. :setStaticAttrS
  90. ?<-- methodComment>
  91. <methodCppReturnType> <classIDLScopedName>::<methodCppName>(<methodCppParamList, ...>)
  92. {
  93.    __som_staticdata__<staticDataName> = <staticDataName>;
  94. }
  95.  
  96. :setAttrConstS
  97. ?<-- methodComment>
  98. <methodCppReturnType> <classIDLScopedName>::<methodCppName>(const <methodCppParamList, ...>)
  99. {
  100. }
  101.  
  102. :setStaticAttrConstS
  103. ?<-- methodComment>
  104. <methodCppReturnType> <classIDLScopedName>::<methodCppName>(const <methodCppParamList, ...>)
  105. {
  106.    __som_staticdata__<staticDataName> = <staticDataName>;
  107. }
  108.  
  109. :staticMethodS
  110. ?<-- methodComment>
  111. <methodCppReturnType> <classIDLScopedName>::<methodCppName>(<methodFullCppParamList, ...>)
  112. {
  113. }
  114.  
  115. :nonSOMObjectConstructorS
  116. ?<-- methodComment>
  117. <classIDLScopedName>::<cppClassNameNP>(<methodCppParamList, ...>)
  118. {
  119. }
  120.  
  121. :destructorS
  122. ?<-- methodComment>
  123. <classIDLScopedName>::~<cppClassNameNP>()
  124. {
  125. }
  126.  
  127. :noArgConstructorS
  128. ?<-- methodComment>
  129. <classIDLScopedName>::<cppClassNameNP>() 
  130. {
  131. }
  132.  
  133. :defaultCopyInitS
  134. ?<-- methodComment>
  135. <classIDLScopedName>::<cppClassNameNP>(<cppClassName>& fromObj)
  136. {
  137. }
  138.  
  139. :defaultVCopyInitS
  140. ?<-- methodComment>
  141. <classIDLScopedName>::<cppClassNameNP>(volatile <cppClassName>& fromObj)
  142. {
  143. }
  144.  
  145. :defaultConstCopyInitS
  146. ?<-- methodComment>
  147. <classIDLScopedName>::<cppClassNameNP>(const <cppClassName>& fromObj)
  148. {
  149. }  
  150.  
  151. :defaultConstVCopyInitS
  152. ?<-- methodComment>
  153. <classIDLScopedName>::<cppClassNameNP>(const volatile <cppClassName>& fromObj)
  154. {
  155. }
  156.  
  157. :defaultAssignS
  158. ?<-- methodComment>
  159. #ifdef __EXTENDED__SOM__ASSIGNMENTS__
  160.     <classIDLScopedName>::<cppClassNameNP>& somAssign(<cppClassName>& fromObj)
  161.     {
  162.     }
  163. #else
  164.     SOMObject* <classIDLScopedName>::somDefaultAssign(som3AssignCtrl*, SOMObject* fromObj)
  165.     {
  166.     }
  167. #endif
  168.  
  169. :defaultConstAssignS
  170. ?<-- methodComment>
  171. #ifdef __EXTENDED__SOM__ASSIGNMENTS__
  172.    <classIDLScopedName>::<cppClassNameNP>& somAssign(const <cppClassName>&)
  173.    {
  174.    }
  175. #else
  176.    SOMObject* <classIDLScopedName>::somDefaultConstAssign(som3AssignCtrl * ctrl, const SOMObject* fromObj)
  177.    {
  178.    }
  179. #endif
  180.  
  181. :defaultVAssignS
  182. ?<-- methodComment>
  183. #ifdef __EXTENDED__SOM__ASSIGNMENTS__
  184.    <classIDLScopedName>::<cppClassNameNP>& somAssign(volatile <cppClassName>& fromObj)
  185.    {
  186.    }
  187. #else
  188.    SOMObject* <classIDLScopedName>::somDefaultVAssign(som3AssignCtrl * ctrl, volatile SOMObject* fromObj)
  189.    {
  190.    }
  191. #endif
  192.  
  193. :defaultConstVAssignS
  194. ?<-- methodComment>
  195. #ifdef __EXTENDED__SOM__ASSIGNMENTS__
  196.    <classIDLScopedName>::<cppClassNameNP>& somAssign(const volatile <cppClassName>& fromObj)
  197.    {
  198.    }
  199. #else
  200.    SOMObject* <classIDLScopedName>::somDefaultConstVAssign(som3AssignCtrl * ctrl, const volatile SOMObject* fromObj)
  201.    {
  202.    }
  203. #endif
  204.  
  205. :dummyEndS
  206.  
  207.  
  208.