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

生物技术

开发平台:

C/C++

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