nodemap.inl
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: nodemap.inl,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/01 21:02:10  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(HTML___NODEMAP__HPP)  &&  !defined(HTML___NODEMAP__INL)
  10. #define HTML___NODEMAP__INL
  11. /*  $Id: nodemap.inl,v 1000.2 2004/04/01 21:02:10 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Eugene Vasilchenko
  37.  *
  38.  */
  39. template<class C>
  40. StaticTagMapperByNode<C>::StaticTagMapperByNode(
  41.     CNCBINode* (*function)(C* node))
  42.     : m_Function(function)
  43. {
  44.     return;
  45. }
  46. template<class C>
  47. CNCBINode* StaticTagMapperByNode<C>::MapTag(
  48.     CNCBINode* _this, const string&) const
  49. {
  50.     return m_Function(dynamic_cast<C*>(_this));
  51. }
  52. template<class C>
  53. StaticTagMapperByNodeAndName<C>::StaticTagMapperByNodeAndName(
  54.     CNCBINode* (*function)(C* node, const string& name))
  55.     : m_Function(function)
  56. {
  57.     return;
  58. }
  59. template<class C>
  60. CNCBINode* StaticTagMapperByNodeAndName<C>::MapTag(
  61.     CNCBINode* _this, const string& name) const
  62. {
  63.     return m_Function(dynamic_cast<C*>(_this), name);
  64. }
  65. template<class C, typename T>
  66. StaticTagMapperByNodeAndData<C,T>::StaticTagMapperByNodeAndData(
  67.     CNCBINode* (*function)(C* node, T data), T data)
  68.     : m_Function(function), m_Data(data)
  69. {
  70.     return;
  71. }
  72. template<class C, typename T>
  73. CNCBINode* StaticTagMapperByNodeAndData<C,T>::MapTag(
  74.     CNCBINode* _this, const string&) const
  75. {
  76.     return m_Function(dynamic_cast<C*>(_this), m_Data);
  77. }
  78. template<class C, typename T>
  79. StaticTagMapperByNodeAndDataAndName<C,T>::StaticTagMapperByNodeAndDataAndName(
  80.     CNCBINode* (*function)(C* node, T data, const string &name), T data)
  81.     : m_Function(function), m_Data(data)
  82. {
  83.     return;
  84. }
  85. template<class C, typename T>
  86. CNCBINode* StaticTagMapperByNodeAndDataAndName<C,T>::MapTag(
  87.     CNCBINode* _this, const string& name) const
  88. {
  89.     return m_Function(dynamic_cast<C*>(_this), m_Data, name);
  90. }
  91. template<class C>
  92. TagMapper<C>::TagMapper(CNCBINode* (C::*method)(void))
  93.     : m_Method(method)
  94. {
  95.     return;
  96. }
  97. template<class C>
  98. CNCBINode* TagMapper<C>::MapTag(CNCBINode* _this, const string&) const
  99. {
  100.     return (dynamic_cast<C*>(_this)->*m_Method)();
  101. }
  102. template<class C>
  103. TagMapperByName<C>::TagMapperByName(
  104.     CNCBINode* (C::*method)(const string& name)
  105.     ) : m_Method(method)
  106. {
  107.     return;
  108. }
  109. template<class C>
  110. CNCBINode* TagMapperByName<C>::MapTag(
  111.     CNCBINode* _this, const string& name) const
  112. {
  113.     return (dynamic_cast<C*>(_this)->*m_Method)(name);
  114. }
  115. template<class C, typename T>
  116. TagMapperByData<C,T>::TagMapperByData(
  117.     CNCBINode* (C::*method)(T data), T data)
  118.     : m_Method(method), m_Data(data)
  119. {
  120.     return;
  121. }
  122. template<class C, typename T>
  123. CNCBINode* TagMapperByData<C,T>::MapTag(
  124.     CNCBINode* _this, const string&) const
  125. {
  126.     return (dynamic_cast<C*>(_this)->*m_Method)(m_Data);
  127. }
  128. template<class C, typename T>
  129. TagMapperByDataAndName<C,T>::TagMapperByDataAndName(
  130.     CNCBINode* (C::*method)(T data, const string& name), T data)
  131.     : m_Method(method), m_Data(data)
  132. {
  133.     return;
  134. }
  135. template<class C, typename T>
  136. CNCBINode* TagMapperByDataAndName<C,T>::MapTag(
  137.     CNCBINode* _this, const string& name) const
  138. {
  139.     return (dynamic_cast<C*>(_this)->*m_Method)(m_Data, name);
  140. }
  141. /*
  142.  * ===========================================================================
  143.  * $Log: nodemap.inl,v $
  144.  * Revision 1000.2  2004/04/01 21:02:10  gouriano
  145.  * PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.9
  146.  *
  147.  * Revision 1.9  2004/02/02 14:14:15  ivanov
  148.  * Added TagMapper to functons and class methods which used a data parameter
  149.  *
  150.  * Revision 1.8  2003/11/03 17:02:53  ivanov
  151.  * Some formal code rearrangement. Move log to end.
  152.  *
  153.  * Revision 1.7  1999/10/28 13:40:31  vasilche
  154.  * Added reference counters to CNCBINode.
  155.  *
  156.  * Revision 1.6  1999/05/28 16:32:10  vasilche
  157.  * Fixed memory leak in page tag mappers.
  158.  *
  159.  * Revision 1.5  1999/04/27 14:49:58  vasilche
  160.  * Added FastCGI interface.
  161.  * CNcbiContext renamed to CCgiContext.
  162.  *
  163.  * Revision 1.4  1998/12/24 16:15:38  vasilche
  164.  * Added CHTMLComment class.
  165.  * Added TagMappers from static functions.
  166.  *
  167.  * Revision 1.3  1998/12/23 21:20:59  vasilche
  168.  * Added more HTML tags (almost all).
  169.  * Importent ones: all lists (OL, UL, DIR, MENU), fonts (FONT, BASEFONT).
  170.  *
  171.  * Revision 1.2  1998/12/22 16:39:12  vasilche
  172.  * Added ReadyTagMapper to map tags to precreated nodes.
  173.  *
  174.  * Revision 1.1  1998/12/21 22:24:58  vasilche
  175.  * A lot of cleaning.
  176.  *
  177.  * ===========================================================================
  178.  */
  179. #endif /* def HTML___NODEMAP__HPP  &&  ndef HTML___NODEMAP__INL */