typeinfoimpl.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
- /*
- * ===========================================================================
- * PRODUCTION $Log: typeinfoimpl.hpp,v $
- * PRODUCTION Revision 1000.1 2004/04/12 17:16:05 gouriano
- * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
- * PRODUCTION
- * ===========================================================================
- */
- #ifndef TYPEINFOIMPL__HPP
- #define TYPEINFOIMPL__HPP
- /* $Id: typeinfoimpl.hpp,v 1000.1 2004/04/12 17:16:05 gouriano Exp $
- * ===========================================================================
- *
- * PUBLIC DOMAIN NOTICE
- * National Center for Biotechnology Information
- *
- * This software/database is a "United States Government Work" under the
- * terms of the United States Copyright Act. It was written as part of
- * the author's official duties as a United States Government employee and
- * thus cannot be copyrighted. This software/database is freely available
- * to the public for use. The National Library of Medicine and the U.S.
- * Government have not placed any restriction on its use or reproduction.
- *
- * Although all reasonable efforts have been taken to ensure the accuracy
- * and reliability of the software and data, the NLM and the U.S.
- * Government do not and cannot warrant the performance or results that
- * may be obtained by using this software or data. The NLM and the U.S.
- * Government disclaim all warranties, express or implied, including
- * warranties of performance, merchantability or fitness for any particular
- * purpose.
- *
- * Please cite the author in any work or product based on this material.
- *
- * ===========================================================================
- *
- * Author: Eugene Vasilchenko
- *
- * File Description:
- * !!! PUT YOUR DESCRIPTION HERE !!!
- */
- #include <corelib/ncbistd.hpp>
- #include <serial/serialdef.hpp>
- /** @addtogroup TypeInfoCPP
- *
- * @{
- */
- BEGIN_NCBI_SCOPE
- class NCBI_XSERIAL_EXPORT CVoidTypeFunctions
- {
- public:
- static TObjectPtr Create(TTypeInfo objectType);
- static bool IsDefault(TConstObjectPtr objectPtr);
- static void SetDefault(TObjectPtr objectPtr);
- static bool Equals(TConstObjectPtr obj1, TConstObjectPtr obj2,
- ESerialRecursionMode how = eRecursive);
- static void Assign(TObjectPtr dst, TConstObjectPtr src,
- ESerialRecursionMode how = eRecursive);
- static void Read(CObjectIStream& in, TTypeInfo objectType,
- TObjectPtr objectPtr);
- static void Write(CObjectOStream& out, TTypeInfo objectType,
- TConstObjectPtr objectPtr);
- static void Copy(CObjectStreamCopier& copier, TTypeInfo objectType);
- static void Skip(CObjectIStream& in, TTypeInfo objectType);
- static void ThrowException(const char* operation, TTypeInfo objectType);
- };
- /* @} */
- //#include <serial/typeinfoimpl.inl>
- END_NCBI_SCOPE
- #endif /* TYPEINFOIMPL__HPP */
- /* ---------------------------------------------------------------------------
- * $Log: typeinfoimpl.hpp,v $
- * Revision 1000.1 2004/04/12 17:16:05 gouriano
- * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
- *
- * Revision 1.5 2004/03/25 15:57:55 gouriano
- * Added possibility to copy and compare serial object non-recursively
- *
- * Revision 1.4 2003/04/15 16:19:07 siyan
- * Added doxygen support
- *
- * Revision 1.3 2002/12/23 18:38:52 dicuccio
- * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
- * Moved all CVS logs to the end.
- *
- * Revision 1.2 2000/10/13 16:28:33 vasilche
- * Reduced header dependency.
- * Avoid use of templates with virtual methods.
- * Reduced amount of different maps used.
- * All this lead to smaller compiled code size (libraries and programs).
- *
- * Revision 1.1 2000/09/18 20:00:11 vasilche
- * Separated CVariantInfo and CMemberInfo.
- * Implemented copy hooks.
- * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
- * Most type specific functions now are implemented via function pointers instead of virtual functions.
- *
- * ===========================================================================
- */