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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: Query_Select_.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:20:32  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: Query_Select_.hpp,v 1000.1 2004/04/12 17:20:32 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 QUERY_SELECT_BASE_HPP
  45. #define QUERY_SELECT_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 CQuery_Select_Base : public ncbi::CSerialObject
  54. {
  55.     typedef ncbi::CSerialObject Tparent;
  56. public:
  57.     // constructor
  58.     CQuery_Select_Base(void);
  59.     // destructor
  60.     virtual ~CQuery_Select_Base(void);
  61.     // type info
  62.     DECLARE_INTERNAL_TYPE_INFO();
  63.     // types
  64.     typedef std::string TDb;
  65.     typedef CItem_Set TItems;
  66.     // getters
  67.     // setters
  68.     // mandatory
  69.     // typedef std::string TDb
  70.     bool IsSetDb(void) const;
  71.     bool CanGetDb(void) const;
  72.     void ResetDb(void);
  73.     const TDb& GetDb(void) const;
  74.     void SetDb(const TDb& value);
  75.     TDb& SetDb(void);
  76.     // mandatory
  77.     // typedef CItem_Set TItems
  78.     bool IsSetItems(void) const;
  79.     bool CanGetItems(void) const;
  80.     void ResetItems(void);
  81.     const TItems& GetItems(void) const;
  82.     void SetItems(TItems& value);
  83.     TItems& SetItems(void);
  84.     // reset whole object
  85.     virtual void Reset(void);
  86. private:
  87.     // Prohibit copy constructor and assignment operator
  88.     CQuery_Select_Base(const CQuery_Select_Base&);
  89.     CQuery_Select_Base& operator=(const CQuery_Select_Base&);
  90.     // data
  91.     Uint4 m_set_State[1];
  92.     TDb m_Db;
  93.     ncbi::CRef< TItems > m_Items;
  94. };
  95. ///////////////////////////////////////////////////////////
  96. ///////////////////// inline methods //////////////////////
  97. ///////////////////////////////////////////////////////////
  98. inline
  99. bool CQuery_Select_Base::IsSetDb(void) const
  100. {
  101.     return ((m_set_State[0] & 0x3) != 0);
  102. }
  103. inline
  104. bool CQuery_Select_Base::CanGetDb(void) const
  105. {
  106.     return IsSetDb();
  107. }
  108. inline
  109. const std::string& CQuery_Select_Base::GetDb(void) const
  110. {
  111.     if (!CanGetDb()) {
  112.         ThrowUnassigned(0);
  113.     }
  114.     return m_Db;
  115. }
  116. inline
  117. void CQuery_Select_Base::SetDb(const std::string& value)
  118. {
  119.     m_Db = value;
  120.     m_set_State[0] |= 0x3;
  121. }
  122. inline
  123. std::string& CQuery_Select_Base::SetDb(void)
  124. {
  125. #ifdef _DEBUG
  126.     if (!IsSetDb()) {
  127.         m_Db = ms_UnassignedStr;
  128.     }
  129. #endif
  130.     m_set_State[0] |= 0x1;
  131.     return m_Db;
  132. }
  133. inline
  134. bool CQuery_Select_Base::IsSetItems(void) const
  135. {
  136.     return m_Items;
  137. }
  138. inline
  139. bool CQuery_Select_Base::CanGetItems(void) const
  140. {
  141.     return IsSetItems();
  142. }
  143. inline
  144. const CItem_Set& CQuery_Select_Base::GetItems(void) const
  145. {
  146.     if (!CanGetItems()) {
  147.         ThrowUnassigned(1);
  148.     }
  149.     return (*m_Items);
  150. }
  151. inline
  152. CItem_Set& CQuery_Select_Base::SetItems(void)
  153. {
  154.     return (*m_Items);
  155. }
  156. ///////////////////////////////////////////////////////////
  157. ////////////////// end of inline methods //////////////////
  158. ///////////////////////////////////////////////////////////
  159. #endif // QUERY_SELECT_BASE_HPP