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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Name_.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:19:47  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Name_.hpp,v 1000.1 2004/04/12 17:19:47 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * File Description:
  35.  *   This code is generated by application DATATOOL
  36.  *   using specifications from the data definition file
  37.  *   'twebenv.asn'.
  38.  *
  39.  * ATTENTION:
  40.  *   Don't edit or check-in this file to the CVS as this file will
  41.  *   be overridden (by DATATOOL) without warning!
  42.  * ===========================================================================
  43.  */
  44. #ifndef NAME_BASE_HPP
  45. #define NAME_BASE_HPP
  46. // standard includes
  47. #include <serial/serialbase.hpp>
  48. // generated includes
  49. #include <string>
  50. // generated classes
  51. class CName_Base : public ncbi::CSerialObject
  52. {
  53.     typedef ncbi::CSerialObject Tparent;
  54. public:
  55.     // constructor
  56.     CName_Base(void);
  57.     // destructor
  58.     virtual ~CName_Base(void);
  59.     // type info
  60.     DECLARE_INTERNAL_TYPE_INFO();
  61.     // types
  62.     typedef std::string TName;
  63.     typedef std::string TDescription;
  64.     // getters
  65.     // setters
  66.     // mandatory
  67.     // typedef std::string TName
  68.     bool IsSetName(void) const;
  69.     bool CanGetName(void) const;
  70.     void ResetName(void);
  71.     const TName& GetName(void) const;
  72.     void SetName(const TName& value);
  73.     TName& SetName(void);
  74.     // optional
  75.     // typedef std::string TDescription
  76.     bool IsSetDescription(void) const;
  77.     bool CanGetDescription(void) const;
  78.     void ResetDescription(void);
  79.     const TDescription& GetDescription(void) const;
  80.     void SetDescription(const TDescription& value);
  81.     TDescription& SetDescription(void);
  82.     // reset whole object
  83.     virtual void Reset(void);
  84. private:
  85.     // Prohibit copy constructor and assignment operator
  86.     CName_Base(const CName_Base&);
  87.     CName_Base& operator=(const CName_Base&);
  88.     // data
  89.     Uint4 m_set_State[1];
  90.     TName m_Name;
  91.     TDescription m_Description;
  92. };
  93. ///////////////////////////////////////////////////////////
  94. ///////////////////// inline methods //////////////////////
  95. ///////////////////////////////////////////////////////////
  96. inline
  97. bool CName_Base::IsSetName(void) const
  98. {
  99.     return ((m_set_State[0] & 0x3) != 0);
  100. }
  101. inline
  102. bool CName_Base::CanGetName(void) const
  103. {
  104.     return IsSetName();
  105. }
  106. inline
  107. const std::string& CName_Base::GetName(void) const
  108. {
  109.     if (!CanGetName()) {
  110.         ThrowUnassigned(0);
  111.     }
  112.     return m_Name;
  113. }
  114. inline
  115. void CName_Base::SetName(const std::string& value)
  116. {
  117.     m_Name = value;
  118.     m_set_State[0] |= 0x3;
  119. }
  120. inline
  121. std::string& CName_Base::SetName(void)
  122. {
  123. #ifdef _DEBUG
  124.     if (!IsSetName()) {
  125.         m_Name = ms_UnassignedStr;
  126.     }
  127. #endif
  128.     m_set_State[0] |= 0x1;
  129.     return m_Name;
  130. }
  131. inline
  132. bool CName_Base::IsSetDescription(void) const
  133. {
  134.     return ((m_set_State[0] & 0xc) != 0);
  135. }
  136. inline
  137. bool CName_Base::CanGetDescription(void) const
  138. {
  139.     return IsSetDescription();
  140. }
  141. inline
  142. const std::string& CName_Base::GetDescription(void) const
  143. {
  144.     if (!CanGetDescription()) {
  145.         ThrowUnassigned(1);
  146.     }
  147.     return m_Description;
  148. }
  149. inline
  150. void CName_Base::SetDescription(const std::string& value)
  151. {
  152.     m_Description = value;
  153.     m_set_State[0] |= 0xc;
  154. }
  155. inline
  156. std::string& CName_Base::SetDescription(void)
  157. {
  158. #ifdef _DEBUG
  159.     if (!IsSetDescription()) {
  160.         m_Description = ms_UnassignedStr;
  161.     }
  162. #endif
  163.     m_set_State[0] |= 0x4;
  164.     return m_Description;
  165. }
  166. ///////////////////////////////////////////////////////////
  167. ////////////////// end of inline methods //////////////////
  168. ///////////////////////////////////////////////////////////
  169. #endif // NAME_BASE_HPP