⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memberid.cpp

📁 ncbi源码
💻 CPP
字号:
/* * =========================================================================== * PRODUCTION $Log: memberid.cpp,v $ * PRODUCTION Revision 1000.1  2004/06/01 19:40:29  gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18 * PRODUCTION * =========================================================================== *//*  $Id: memberid.cpp,v 1000.1 2004/06/01 19:40:29 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 !!!** ---------------------------------------------------------------------------* $Log: memberid.cpp,v $* Revision 1000.1  2004/06/01 19:40:29  gouriano* PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18** Revision 1.18  2004/05/17 21:03:02  gorelenk* Added include of PCH ncbi_pch.hpp** Revision 1.17  2003/09/16 14:48:36  gouriano* Enhanced AnyContent objects to support XML namespaces and attribute info items.** Revision 1.16  2003/06/24 20:57:36  gouriano* corrected code generation and serialization of non-empty unnamed containers (XML)** Revision 1.15  2002/11/14 20:57:50  gouriano* added Attlist and Notag flags** Revision 1.14  2002/09/25 19:37:36  gouriano* added the possibility of having no tag prefix in XML I/O streams** Revision 1.13  2000/10/03 17:22:42  vasilche* Reduced header dependency.* Reduced size of debug libraries on WorkShop by 3 times.* Fixed tag allocation for parent classes.* Fixed CObject allocation/deallocation in streams.* Moved instantiation of several templates in separate source file.** Revision 1.12  2000/09/18 20:00:22  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.** Revision 1.11  2000/09/01 13:16:15  vasilche* Implemented class/container/choice iterators.* Implemented CObjectStreamCopier for copying data without loading into memory.** Revision 1.10  2000/08/15 19:44:47  vasilche* Added Read/Write hooks:* CReadObjectHook/CWriteObjectHook for objects of specified type.* CReadClassMemberHook/CWriteClassMemberHook for specified members.* CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.* CReadContainerElementHook/CWriteContainerElementsHook for containers.** Revision 1.9  2000/07/03 18:42:44  vasilche* Added interface to typeinfo via CObjectInfo and CConstObjectInfo.* Reduced header dependency.** Revision 1.8  2000/06/16 16:31:19  vasilche* Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.** Revision 1.7  2000/05/24 20:08:46  vasilche* Implemented XML dump.** Revision 1.6  2000/05/09 16:38:38  vasilche* CObject::GetTypeInfo now moved to CObjectGetTypeInfo::GetTypeInfo to reduce possible errors.* Added write context to CObjectOStream.* Inlined most of methods of helping class Member, Block, ByteBlock etc.** Revision 1.5  2000/01/05 19:43:53  vasilche* Fixed error messages when reading from ASN.1 binary file.* Fixed storing of integers with enumerated values in ASN.1 binary file.* Added TAG support to key/value of map.* Added support of NULL variant in CHOICE.** Revision 1.4  1999/12/17 19:05:02  vasilche* Simplified generation of GetTypeInfo methods.** Revision 1.3  1999/07/22 19:40:54  vasilche* Fixed bug with complex object graphs (pointers to members of other objects).** Revision 1.2  1999/07/02 21:31:54  vasilche* Implemented reading from ASN.1 binary format.** Revision 1.1  1999/06/30 16:04:51  vasilche* Added support for old ASN.1 structures.** ===========================================================================*/#include <ncbi_pch.hpp>#include <corelib/ncbistd.hpp>#include <serial/memberid.hpp>#include <serial/memberlist.hpp>BEGIN_NCBI_SCOPECMemberId::CMemberId(void)    : m_Tag(eNoExplicitTag), m_ExplicitTag(false),    m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false){}CMemberId::CMemberId(TTag tag, bool explicitTag)    : m_Tag(tag), m_ExplicitTag(explicitTag),    m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false){}CMemberId::CMemberId(const string& name)    : m_Name(name), m_Tag(eNoExplicitTag), m_ExplicitTag(false),    m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false){}CMemberId::CMemberId(const string& name, TTag tag, bool explicitTag)    : m_Name(name), m_Tag(tag), m_ExplicitTag(explicitTag),    m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false){}CMemberId::CMemberId(const char* name)    : m_Name(name), m_Tag(eNoExplicitTag), m_ExplicitTag(false),    m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false){    _ASSERT(name);}CMemberId::CMemberId(const char* name, TTag tag, bool explicitTag)    : m_Name(name), m_Tag(tag), m_ExplicitTag(explicitTag),    m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false){    _ASSERT(name);}CMemberId::~CMemberId(void){}bool CMemberId::HaveParentTag(void) const{    return GetTag() == eParentTag && !HaveExplicitTag();}void CMemberId::SetParentTag(void){    SetTag(eParentTag, false);}string CMemberId::ToString(void) const{    if ( !m_Name.empty() )        return m_Name;    else        return '[' + NStr::IntToString(GetTag()) + ']';}void CMemberId::SetNoPrefix(void){    m_NoPrefix = true;}bool CMemberId::HaveNoPrefix(void) const{    return m_NoPrefix;}void CMemberId::SetAttlist(void){    m_Attlist = true;}bool CMemberId::IsAttlist(void) const{    return m_Attlist;}void CMemberId::SetNotag(void){    m_Notag = true;}bool CMemberId::HasNotag(void) const{    return m_Notag;}void CMemberId::SetAnyContent(void){    m_AnyContent = true;}bool CMemberId::HasAnyContent(void) const{    return m_AnyContent;}END_NCBI_SCOPE

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -