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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: hookdataimpl.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:22:23  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef HOOKDATAIMPL__HPP
  10. #define HOOKDATAIMPL__HPP
  11. /*  $Id: hookdataimpl.hpp,v 1000.0 2003/10/29 17:22:23 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. * File Description:
  39. *   !!! PUT YOUR DESCRIPTION HERE !!!
  40. */
  41. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbiobj.hpp>
  43. //#include <util/weakmap.hpp>
  44. /** @addtogroup HookSupport
  45.  *
  46.  * @{
  47.  */
  48. BEGIN_NCBI_SCOPE
  49. /*
  50. class NCBI_XSERIAL_EXPORT CHookDataKeyData
  51. {
  52. public:
  53.     typedef CRef<CObject> mapped_type;
  54.     //typedef CWeakMapKey<mapped_type> TKey;
  55.     CHookDataKeyData(void);
  56.     ~CHookDataKeyData(void);
  57.     void Clear(void);
  58.     TKey m_Key;
  59. };
  60. class NCBI_XSERIAL_EXPORT CHookDataData : public CObject
  61. {
  62. public:
  63.     CHookDataData(void);
  64.     ~CHookDataData(void);
  65.     typedef CRef<CObject> mapped_type;
  66.     //typedef CWeakMap<mapped_type> TMap;
  67.     
  68.     bool Empty(void) const;
  69.     void SetGlobalHook(CObject* hook);
  70.     void ResetGlobalHook(void);
  71.     void SetLocalHook(CHookDataKeyData& key, CObject* hook);
  72.     void ResetLocalHook(CHookDataKeyData& key);
  73.     CObject* GetHook(CHookDataKeyData& key) const;
  74.     mutable mapped_type m_GlobalHook;
  75.     mutable TMap m_LocalHooks;
  76. };
  77. */
  78. /* @} */
  79. //#include <serial/hookdataimpl.inl>
  80. END_NCBI_SCOPE
  81. #endif  /* HOOKDATAIMPL__HPP */
  82. /* ---------------------------------------------------------------------------
  83. * $Log: hookdataimpl.hpp,v $
  84. * Revision 1000.0  2003/10/29 17:22:23  gouriano
  85. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  86. *
  87. * Revision 1.7  2003/07/29 18:47:46  vasilche
  88. * Fixed thread safeness of object stream hooks.
  89. *
  90. * Revision 1.6  2003/04/15 14:15:15  siyan
  91. * Added doxygen support
  92. *
  93. * Revision 1.5  2002/12/23 18:38:51  dicuccio
  94. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  95. * Moved all CVS logs to the end.
  96. *
  97. * Revision 1.4  2002/11/04 21:28:59  grichenk
  98. * Fixed usage of const CRef<> and CRef<> constructor
  99. *
  100. * Revision 1.3  2001/01/05 20:10:34  vasilche
  101. * CByteSource, CIStrBuffer, COStrBuffer, CLightString, CChecksum, CWeakMap
  102. * were moved to util.
  103. *
  104. * Revision 1.2  2000/10/13 16:28:30  vasilche
  105. * Reduced header dependency.
  106. * Avoid use of templates with virtual methods.
  107. * Reduced amount of different maps used.
  108. * All this lead to smaller compiled code size (libraries and programs).
  109. *
  110. * Revision 1.1  2000/10/03 17:22:31  vasilche
  111. * Reduced header dependency.
  112. * Reduced size of debug libraries on WorkShop by 3 times.
  113. * Fixed tag allocation for parent classes.
  114. * Fixed CObject allocation/deallocation in streams.
  115. * Moved instantiation of several templates in separate source file.
  116. *
  117. * ===========================================================================
  118. */