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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Named_Item_Set_.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:19:53  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Named_Item_Set_.hpp,v 1000.1 2004/04/12 17:19:53 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 NAMED_ITEM_SET_BASE_HPP
  45. #define NAMED_ITEM_SET_BASE_HPP
  46. // standard includes
  47. #include <serial/serialbase.hpp>
  48. // generated includes
  49. #include <string>
  50. // forward declarations
  51. class CItem_Set;
  52. class CName;
  53. // generated classes
  54. class CNamed_Item_Set_Base : public ncbi::CSerialObject
  55. {
  56.     typedef ncbi::CSerialObject Tparent;
  57. public:
  58.     // constructor
  59.     CNamed_Item_Set_Base(void);
  60.     // destructor
  61.     virtual ~CNamed_Item_Set_Base(void);
  62.     // type info
  63.     DECLARE_INTERNAL_TYPE_INFO();
  64.     // types
  65.     typedef CName TName;
  66.     typedef std::string TDb;
  67.     typedef CItem_Set TItem_Set;
  68.     // getters
  69.     // setters
  70.     // mandatory
  71.     // typedef CName TName
  72.     bool IsSetName(void) const;
  73.     bool CanGetName(void) const;
  74.     void ResetName(void);
  75.     const TName& GetName(void) const;
  76.     void SetName(TName& value);
  77.     TName& SetName(void);
  78.     // mandatory
  79.     // typedef std::string TDb
  80.     bool IsSetDb(void) const;
  81.     bool CanGetDb(void) const;
  82.     void ResetDb(void);
  83.     const TDb& GetDb(void) const;
  84.     void SetDb(const TDb& value);
  85.     TDb& SetDb(void);
  86.     // mandatory
  87.     // typedef CItem_Set TItem_Set
  88.     bool IsSetItem_Set(void) const;
  89.     bool CanGetItem_Set(void) const;
  90.     void ResetItem_Set(void);
  91.     const TItem_Set& GetItem_Set(void) const;
  92.     void SetItem_Set(TItem_Set& value);
  93.     TItem_Set& SetItem_Set(void);
  94.     // reset whole object
  95.     virtual void Reset(void);
  96. private:
  97.     // Prohibit copy constructor and assignment operator
  98.     CNamed_Item_Set_Base(const CNamed_Item_Set_Base&);
  99.     CNamed_Item_Set_Base& operator=(const CNamed_Item_Set_Base&);
  100.     // data
  101.     Uint4 m_set_State[1];
  102.     ncbi::CRef< TName > m_Name;
  103.     TDb m_Db;
  104.     ncbi::CRef< TItem_Set > m_Item_Set;
  105. };
  106. ///////////////////////////////////////////////////////////
  107. ///////////////////// inline methods //////////////////////
  108. ///////////////////////////////////////////////////////////
  109. inline
  110. bool CNamed_Item_Set_Base::IsSetName(void) const
  111. {
  112.     return m_Name;
  113. }
  114. inline
  115. bool CNamed_Item_Set_Base::CanGetName(void) const
  116. {
  117.     return IsSetName();
  118. }
  119. inline
  120. const CName& CNamed_Item_Set_Base::GetName(void) const
  121. {
  122.     if (!CanGetName()) {
  123.         ThrowUnassigned(0);
  124.     }
  125.     return (*m_Name);
  126. }
  127. inline
  128. CName& CNamed_Item_Set_Base::SetName(void)
  129. {
  130.     return (*m_Name);
  131. }
  132. inline
  133. bool CNamed_Item_Set_Base::IsSetDb(void) const
  134. {
  135.     return ((m_set_State[0] & 0xc) != 0);
  136. }
  137. inline
  138. bool CNamed_Item_Set_Base::CanGetDb(void) const
  139. {
  140.     return IsSetDb();
  141. }
  142. inline
  143. const std::string& CNamed_Item_Set_Base::GetDb(void) const
  144. {
  145.     if (!CanGetDb()) {
  146.         ThrowUnassigned(1);
  147.     }
  148.     return m_Db;
  149. }
  150. inline
  151. void CNamed_Item_Set_Base::SetDb(const std::string& value)
  152. {
  153.     m_Db = value;
  154.     m_set_State[0] |= 0xc;
  155. }
  156. inline
  157. std::string& CNamed_Item_Set_Base::SetDb(void)
  158. {
  159. #ifdef _DEBUG
  160.     if (!IsSetDb()) {
  161.         m_Db = ms_UnassignedStr;
  162.     }
  163. #endif
  164.     m_set_State[0] |= 0x4;
  165.     return m_Db;
  166. }
  167. inline
  168. bool CNamed_Item_Set_Base::IsSetItem_Set(void) const
  169. {
  170.     return m_Item_Set;
  171. }
  172. inline
  173. bool CNamed_Item_Set_Base::CanGetItem_Set(void) const
  174. {
  175.     return IsSetItem_Set();
  176. }
  177. inline
  178. const CItem_Set& CNamed_Item_Set_Base::GetItem_Set(void) const
  179. {
  180.     if (!CanGetItem_Set()) {
  181.         ThrowUnassigned(2);
  182.     }
  183.     return (*m_Item_Set);
  184. }
  185. inline
  186. CItem_Set& CNamed_Item_Set_Base::SetItem_Set(void)
  187. {
  188.     return (*m_Item_Set);
  189. }
  190. ///////////////////////////////////////////////////////////
  191. ////////////////// end of inline methods //////////////////
  192. ///////////////////////////////////////////////////////////
  193. #endif // NAMED_ITEM_SET_BASE_HPP