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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: soap_subcode.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:39:31  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: soap_subcode.hpp,v 1000.0 2003/10/29 17:39:31 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.  * Author: Andrei Gourianov
  35.  *
  36.  * File Description:
  37.  *   SOAP Subcode object
  38.  *
  39.  * ===========================================================================
  40.  */
  41. #ifndef SOAP_SUBCODE_HPP
  42. #define SOAP_SUBCODE_HPP
  43. // standard includes
  44. #include <serial/serialbase.hpp>
  45. // generated includes
  46. #include <string>
  47. BEGIN_NCBI_SCOPE
  48. // forward declarations
  49. //class CSoapSubcode;
  50. // generated classes
  51. class CSoapSubcode : public CSerialObject
  52. {
  53.     typedef CSerialObject Tparent;
  54. public:
  55.     // constructor
  56.     CSoapSubcode(void);
  57.     // destructor
  58.     virtual ~CSoapSubcode(void);
  59.     // type info
  60.     DECLARE_INTERNAL_TYPE_INFO();
  61.     // types
  62.     typedef std::string TSoapValue;
  63.     typedef CSoapSubcode TSoapSubcode;
  64.     // getters
  65.     // setters
  66.     // mandatory
  67.     // typedef std::string TSoapValue
  68.     bool IsSetSoapValue(void) const;
  69.     bool CanGetSoapValue(void) const;
  70.     void ResetSoapValue(void);
  71.     const TSoapValue& GetSoapValue(void) const;
  72.     void SetSoapValue(const TSoapValue& value);
  73.     TSoapValue& SetSoapValue(void);
  74.     // optional
  75.     // typedef CSoapSubcode TSoapSubcode
  76.     bool IsSetSoapSubcode(void) const;
  77.     bool CanGetSoapSubcode(void) const;
  78.     void ResetSoapSubcode(void);
  79.     const TSoapSubcode& GetSoapSubcode(void) const;
  80.     void SetSoapSubcode(TSoapSubcode& value);
  81.     TSoapSubcode& SetSoapSubcode(void);
  82.     // reset whole object
  83.     virtual void Reset(void);
  84. private:
  85.     // Prohibit copy constructor and assignment operator
  86.     CSoapSubcode(const CSoapSubcode&);
  87.     CSoapSubcode& operator=(const CSoapSubcode&);
  88.     // data
  89.     Uint4 m_set_State[1];
  90.     TSoapValue m_SoapValue;
  91.     CRef< TSoapSubcode > m_SoapSubcode;
  92. };
  93. ///////////////////////////////////////////////////////////
  94. ///////////////////// inline methods //////////////////////
  95. ///////////////////////////////////////////////////////////
  96. inline
  97. bool CSoapSubcode::IsSetSoapValue(void) const
  98. {
  99.     return ((m_set_State[0] & 0x3) != 0);
  100. }
  101. inline
  102. bool CSoapSubcode::CanGetSoapValue(void) const
  103. {
  104.     return IsSetSoapValue();
  105. }
  106. inline
  107. const std::string& CSoapSubcode::GetSoapValue(void) const
  108. {
  109.     if (!CanGetSoapValue()) {
  110.         ThrowUnassigned(0);
  111.     }
  112.     return m_SoapValue;
  113. }
  114. inline
  115. void CSoapSubcode::SetSoapValue(const std::string& value)
  116. {
  117.     m_SoapValue = value;
  118.     m_set_State[0] |= 0x3;
  119. }
  120. inline
  121. std::string& CSoapSubcode::SetSoapValue(void)
  122. {
  123. #ifdef _DEBUG
  124.     if (!IsSetSoapValue()) {
  125.         m_SoapValue = ms_UnassignedStr;
  126.     }
  127. #endif
  128.     m_set_State[0] |= 0x1;
  129.     return m_SoapValue;
  130. }
  131. inline
  132. bool CSoapSubcode::IsSetSoapSubcode(void) const
  133. {
  134.     return m_SoapSubcode;
  135. }
  136. inline
  137. bool CSoapSubcode::CanGetSoapSubcode(void) const
  138. {
  139.     return IsSetSoapSubcode();
  140. }
  141. inline
  142. const CSoapSubcode& CSoapSubcode::GetSoapSubcode(void) const
  143. {
  144.     if (!CanGetSoapSubcode()) {
  145.         ThrowUnassigned(1);
  146.     }
  147.     return (*m_SoapSubcode);
  148. }
  149. ///////////////////////////////////////////////////////////
  150. ////////////////// end of inline methods //////////////////
  151. ///////////////////////////////////////////////////////////
  152. END_NCBI_SCOPE
  153. #endif // SOAP_SUBCODE_HPP
  154. /* --------------------------------------------------------------------------
  155. * $Log: soap_subcode.hpp,v $
  156. * Revision 1000.0  2003/10/29 17:39:31  gouriano
  157. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  158. *
  159. * Revision 1.1  2003/09/25 19:46:21  gouriano
  160. * Added soap Fault object
  161. *
  162. *
  163. * ===========================================================================
  164. */