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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: autoptrinfo.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:20:13  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.12
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef AUTOPTRINFO__HPP
  10. #define AUTOPTRINFO__HPP
  11. /*  $Id: autoptrinfo.hpp,v 1000.0 2003/10/29 17:20:13 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 <serial/ptrinfo.hpp>
  42. /** @addtogroup TypeInfoCPP
  43.  *
  44.  * @{
  45.  */
  46. BEGIN_NCBI_SCOPE
  47. class NCBI_XSERIAL_EXPORT CAutoPointerTypeInfo : public CPointerTypeInfo
  48. {
  49.     typedef CPointerTypeInfo CParent;
  50. public:
  51.     CAutoPointerTypeInfo(TTypeInfo type);
  52.     const string& GetModuleName(void) const;
  53.     static TTypeInfo GetTypeInfo(TTypeInfo base);
  54.     static CTypeInfo* CreateTypeInfo(TTypeInfo base);
  55. protected:
  56.     static void ReadAutoPtr(CObjectIStream& in,
  57.                             TTypeInfo objectType,
  58.                             TObjectPtr objectPtr);
  59.     static void WriteAutoPtr(CObjectOStream& out,
  60.                              TTypeInfo objectType,
  61.                              TConstObjectPtr objectPtr);
  62.     static void SkipAutoPtr(CObjectIStream& in,
  63.                             TTypeInfo objectType);
  64.     static void CopyAutoPtr(CObjectStreamCopier& copier,
  65.                             TTypeInfo objectType);
  66. };
  67. //#include <serial/autoptrinfo.inl>
  68. END_NCBI_SCOPE
  69. /* @} */
  70. #endif  /* AUTOPTRINFO__HPP */
  71. /* ---------------------------------------------------------------------------
  72. * $Log: autoptrinfo.hpp,v $
  73. * Revision 1000.0  2003/10/29 17:20:13  gouriano
  74. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.12
  75. *
  76. * Revision 1.12  2003/04/15 14:14:52  siyan
  77. * Added doxygen support
  78. *
  79. * Revision 1.11  2002/12/23 18:38:50  dicuccio
  80. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  81. * Moved all CVS logs to the end.
  82. *
  83. * Revision 1.10  2000/11/07 17:25:11  vasilche
  84. * Fixed encoding of XML:
  85. *     removed unnecessary apostrophes in OCTET STRING
  86. *     removed unnecessary content in NULL
  87. * Added module names to CTypeInfo and CEnumeratedTypeValues
  88. *
  89. * Revision 1.9  2000/10/13 16:28:29  vasilche
  90. * Reduced header dependency.
  91. * Avoid use of templates with virtual methods.
  92. * Reduced amount of different maps used.
  93. * All this lead to smaller compiled code size (libraries and programs).
  94. *
  95. * Revision 1.8  2000/09/18 19:59:59  vasilche
  96. * Separated CVariantInfo and CMemberInfo.
  97. * Implemented copy hooks.
  98. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  99. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  100. *
  101. * Revision 1.7  2000/09/01 13:15:57  vasilche
  102. * Implemented class/container/choice iterators.
  103. * Implemented CObjectStreamCopier for copying data without loading into memory.
  104. *
  105. * Revision 1.6  2000/03/07 14:05:27  vasilche
  106. * Added stream buffering to ASN.1 binary input.
  107. * Optimized class loading/storing.
  108. * Fixed bugs in processing OPTIONAL fields.
  109. *
  110. * Revision 1.5  1999/12/28 18:55:39  vasilche
  111. * Reduced size of compiled object files:
  112. * 1. avoid inline or implicit virtual methods (especially destructors).
  113. * 2. avoid std::string's methods usage in inline methods.
  114. * 3. avoid string literals ("xxx") in inline methods.
  115. *
  116. * Revision 1.4  1999/12/17 19:04:51  vasilche
  117. * Simplified generation of GetTypeInfo methods.
  118. *
  119. * Revision 1.3  1999/09/22 20:11:48  vasilche
  120. * Modified for compilation on IRIX native c++ compiler.
  121. *
  122. * Revision 1.2  1999/09/14 18:54:02  vasilche
  123. * Fixed bugs detected by gcc & egcs.
  124. * Removed unneeded includes.
  125. *
  126. * Revision 1.1  1999/09/07 20:57:42  vasilche
  127. * Forgot to add some files.
  128. *
  129. * ===========================================================================
  130. */