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

生物技术

开发平台:

C/C++

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