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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: nodemap.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:15:49  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: nodemap.cpp,v 1000.3 2004/06/01 19:15:49 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Eugene Vasilchenko
  35.  *
  36.  */
  37. #include <ncbi_pch.hpp>
  38. #include <html/page.hpp>
  39. BEGIN_NCBI_SCOPE
  40. BaseTagMapper::~BaseTagMapper()
  41. {
  42.     return;
  43. }
  44. StaticTagMapper::StaticTagMapper(CNCBINode* (*function)(void))
  45.     : m_Function(function)
  46. {
  47.     return;
  48. }
  49. CNCBINode* StaticTagMapper::MapTag(CNCBINode*, const string&) const
  50. {
  51.     return (*m_Function)();
  52. }
  53. StaticTagMapperByName::StaticTagMapperByName(
  54.     CNCBINode* (*function)(const string& name))
  55.     : m_Function(function)
  56. {
  57.     return;
  58. }
  59. CNCBINode* StaticTagMapperByName::MapTag(CNCBINode*, const string& name) const
  60. {
  61.     return (*m_Function)(name);
  62. }
  63. StaticTagMapperByData::StaticTagMapperByData(
  64.     CNCBINode* (*function)(void* data), void* data)
  65.     : m_Function(function), m_Data(data)
  66. {
  67.     return;
  68. }
  69. CNCBINode* StaticTagMapperByData::MapTag(CNCBINode*,
  70.                                          const string& /*name*/) const
  71. {
  72.     return (*m_Function)(m_Data);
  73. }
  74. StaticTagMapperByDataAndName::StaticTagMapperByDataAndName(
  75.     CNCBINode* (*function)(void* data, const string& name), void* data)
  76.     : m_Function(function), m_Data(data)
  77. {
  78.     return;
  79. }
  80. CNCBINode* StaticTagMapperByDataAndName::MapTag(CNCBINode*,
  81.                                                 const string& name) const
  82. {
  83.     return (*m_Function)(m_Data, name);
  84. }
  85. ReadyTagMapper::ReadyTagMapper(CNCBINode* node)
  86.     : m_Node(node)
  87. {
  88.     return;
  89. }
  90. CNCBINode* ReadyTagMapper::MapTag(CNCBINode*, const string&) const
  91. {
  92.     return &*m_Node;
  93. }
  94. END_NCBI_SCOPE
  95. /*
  96.  * ===========================================================================
  97.  * $Log: nodemap.cpp,v $
  98.  * Revision 1000.3  2004/06/01 19:15:49  gouriano
  99.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  100.  *
  101.  * Revision 1.10  2004/05/17 20:59:50  gorelenk
  102.  * Added include of PCH ncbi_pch.hpp
  103.  *
  104.  * Revision 1.9  2004/02/02 14:14:45  ivanov
  105.  * Added TagMapper to functons and class methods which used a data parameter
  106.  *
  107.  * Revision 1.8  2003/11/03 17:03:08  ivanov
  108.  * Some formal code rearrangement. Move log to end.
  109.  *
  110.  * Revision 1.7  2000/03/07 15:26:13  vasilche
  111.  * Removed second definition of CRef.
  112.  *
  113.  * Revision 1.6  1999/10/28 13:40:36  vasilche
  114.  * Added reference counters to CNCBINode.
  115.  *
  116.  * Revision 1.5  1999/05/28 16:32:15  vasilche
  117.  * Fixed memory leak in page tag mappers.
  118.  *
  119.  * Revision 1.4  1999/01/06 21:35:37  vasilche
  120.  * Avoid use of Clone.
  121.  * Fixed default CHTML_text width.
  122.  *
  123.  * Revision 1.3  1998/12/28 20:29:19  vakatov
  124.  * New CVS and development tree structure for the NCBI C++ projects
  125.  *
  126.  * Revision 1.2  1998/12/24 16:15:42  vasilche
  127.  * Added CHTMLComment class.
  128.  * Added TagMappers from static functions.
  129.  *
  130.  * Revision 1.1  1998/12/22 16:39:15  vasilche
  131.  * Added ReadyTagMapper to map tags to precreated nodes.
  132.  *
  133.  * ===========================================================================
  134.  */