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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Item_Set_.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:19:40  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Item_Set_.hpp,v 1000.1 2004/04/12 17:19:40 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 ITEM_SET_BASE_HPP
  45. #define ITEM_SET_BASE_HPP
  46. // standard includes
  47. #include <serial/serialbase.hpp>
  48. // generated includes
  49. #include <vector>
  50. // generated classes
  51. class CItem_Set_Base : public ncbi::CSerialObject
  52. {
  53.     typedef ncbi::CSerialObject Tparent;
  54. public:
  55.     // constructor
  56.     CItem_Set_Base(void);
  57.     // destructor
  58.     virtual ~CItem_Set_Base(void);
  59.     // type info
  60.     DECLARE_INTERNAL_TYPE_INFO();
  61.     // types
  62.     typedef std::vector< char > TItems;
  63.     typedef int TCount;
  64.     // getters
  65.     // setters
  66.     // mandatory
  67.     // typedef std::vector< char > TItems
  68.     bool IsSetItems(void) const;
  69.     bool CanGetItems(void) const;
  70.     void ResetItems(void);
  71.     const TItems& GetItems(void) const;
  72.     TItems& SetItems(void);
  73.     // mandatory
  74.     // typedef int TCount
  75.     bool IsSetCount(void) const;
  76.     bool CanGetCount(void) const;
  77.     void ResetCount(void);
  78.     TCount GetCount(void) const;
  79.     void SetCount(const TCount& value);
  80.     TCount& SetCount(void);
  81.     // reset whole object
  82.     virtual void Reset(void);
  83. private:
  84.     // Prohibit copy constructor and assignment operator
  85.     CItem_Set_Base(const CItem_Set_Base&);
  86.     CItem_Set_Base& operator=(const CItem_Set_Base&);
  87.     // data
  88.     Uint4 m_set_State[1];
  89.     TItems m_Items;
  90.     TCount m_Count;
  91. };
  92. ///////////////////////////////////////////////////////////
  93. ///////////////////// inline methods //////////////////////
  94. ///////////////////////////////////////////////////////////
  95. inline
  96. bool CItem_Set_Base::IsSetItems(void) const
  97. {
  98.     return ((m_set_State[0] & 0x3) != 0);
  99. }
  100. inline
  101. bool CItem_Set_Base::CanGetItems(void) const
  102. {
  103.     return IsSetItems();
  104. }
  105. inline
  106. const std::vector< char >& CItem_Set_Base::GetItems(void) const
  107. {
  108.     if (!CanGetItems()) {
  109.         ThrowUnassigned(0);
  110.     }
  111.     return m_Items;
  112. }
  113. inline
  114. std::vector< char >& CItem_Set_Base::SetItems(void)
  115. {
  116.     m_set_State[0] |= 0x1;
  117.     return m_Items;
  118. }
  119. inline
  120. bool CItem_Set_Base::IsSetCount(void) const
  121. {
  122.     return ((m_set_State[0] & 0xc) != 0);
  123. }
  124. inline
  125. bool CItem_Set_Base::CanGetCount(void) const
  126. {
  127.     return IsSetCount();
  128. }
  129. inline
  130. void CItem_Set_Base::ResetCount(void)
  131. {
  132.     m_Count = 0;
  133.     m_set_State[0] &= ~0xc;
  134. }
  135. inline
  136. int CItem_Set_Base::GetCount(void) const
  137. {
  138.     if (!CanGetCount()) {
  139.         ThrowUnassigned(1);
  140.     }
  141.     return m_Count;
  142. }
  143. inline
  144. void CItem_Set_Base::SetCount(const int& value)
  145. {
  146.     m_Count = value;
  147.     m_set_State[0] |= 0xc;
  148. }
  149. inline
  150. int& CItem_Set_Base::SetCount(void)
  151. {
  152. #ifdef _DEBUG
  153.     if (!IsSetCount()) {
  154.         memset(&m_Count,ms_UnassignedByte,sizeof(m_Count));
  155.     }
  156. #endif
  157.     m_set_State[0] |= 0x4;
  158.     return m_Count;
  159. }
  160. ///////////////////////////////////////////////////////////
  161. ////////////////// end of inline methods //////////////////
  162. ///////////////////////////////////////////////////////////
  163. #endif // ITEM_SET_BASE_HPP