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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: typeinfoimpl.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:16:05  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef TYPEINFOIMPL__HPP
  10. #define TYPEINFOIMPL__HPP
  11. /*  $Id: typeinfoimpl.hpp,v 1000.1 2004/04/12 17:16:05 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 <serial/serialdef.hpp>
  43. /** @addtogroup TypeInfoCPP
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. class NCBI_XSERIAL_EXPORT CVoidTypeFunctions
  49. {
  50. public:
  51.     static TObjectPtr Create(TTypeInfo objectType);
  52.     static bool IsDefault(TConstObjectPtr objectPtr);
  53.     static void SetDefault(TObjectPtr objectPtr);
  54.     static bool Equals(TConstObjectPtr obj1, TConstObjectPtr obj2,
  55.                        ESerialRecursionMode how = eRecursive);
  56.     static void Assign(TObjectPtr dst, TConstObjectPtr src,
  57.                        ESerialRecursionMode how = eRecursive);
  58.     static void Read(CObjectIStream& in, TTypeInfo objectType,
  59.                      TObjectPtr objectPtr);
  60.     static void Write(CObjectOStream& out, TTypeInfo objectType,
  61.                       TConstObjectPtr objectPtr);
  62.     static void Copy(CObjectStreamCopier& copier, TTypeInfo objectType);
  63.     static void Skip(CObjectIStream& in, TTypeInfo objectType);
  64.     static void ThrowException(const char* operation, TTypeInfo objectType);
  65. };
  66. /* @} */
  67. //#include <serial/typeinfoimpl.inl>
  68. END_NCBI_SCOPE
  69. #endif  /* TYPEINFOIMPL__HPP */
  70. /* ---------------------------------------------------------------------------
  71. * $Log: typeinfoimpl.hpp,v $
  72. * Revision 1000.1  2004/04/12 17:16:05  gouriano
  73. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  74. *
  75. * Revision 1.5  2004/03/25 15:57:55  gouriano
  76. * Added possibility to copy and compare serial object non-recursively
  77. *
  78. * Revision 1.4  2003/04/15 16:19:07  siyan
  79. * Added doxygen support
  80. *
  81. * Revision 1.3  2002/12/23 18:38:52  dicuccio
  82. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  83. * Moved all CVS logs to the end.
  84. *
  85. * Revision 1.2  2000/10/13 16:28:33  vasilche
  86. * Reduced header dependency.
  87. * Avoid use of templates with virtual methods.
  88. * Reduced amount of different maps used.
  89. * All this lead to smaller compiled code size (libraries and programs).
  90. *
  91. * Revision 1.1  2000/09/18 20:00:11  vasilche
  92. * Separated CVariantInfo and CMemberInfo.
  93. * Implemented copy hooks.
  94. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  95. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  96. *
  97. * ===========================================================================
  98. */