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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: soap_detail.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:38:57  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: soap_detail.hpp,v 1000.0 2003/10/29 17:38:57 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 Detail object
  38.  *
  39.  * ===========================================================================
  40.  */
  41. #ifndef SOAP_DETAIL_HPP
  42. #define SOAP_DETAIL_HPP
  43. // standard includes
  44. #include <serial/serialbase.hpp>
  45. // generated includes
  46. #include <list>
  47. BEGIN_NCBI_SCOPE
  48. // generated classes
  49. class CSoapDetail : public CSerialObject
  50. {
  51.     typedef CSerialObject Tparent;
  52. public:
  53.     // constructor
  54.     CSoapDetail(void);
  55.     // destructor
  56.     virtual ~CSoapDetail(void);
  57.     // type info
  58.     DECLARE_INTERNAL_TYPE_INFO();
  59.     class C_E : public CSerialObject
  60.     {
  61.         typedef CSerialObject Tparent;
  62.     public:
  63.         // constructor
  64.         C_E(void);
  65.         // destructor
  66.         ~C_E(void);
  67.     
  68.         // type info
  69.         DECLARE_INTERNAL_TYPE_INFO();
  70.     
  71.         // types
  72.         typedef CAnyContentObject TAnyContent;
  73.     
  74.         // getters
  75.         // setters
  76.     
  77.         // mandatory
  78.         // typedef CAnyContentObject TAnyContent
  79.         bool IsSetAnyContent(void) const;
  80.         bool CanGetAnyContent(void) const;
  81.         void ResetAnyContent(void);
  82.         const TAnyContent& GetAnyContent(void) const;
  83.         void SetAnyContent(TAnyContent& value);
  84.         TAnyContent& SetAnyContent(void);
  85.     
  86.         // reset whole object
  87.         void Reset(void);
  88.     
  89.     
  90.     private:
  91.         // Prohibit copy constructor and assignment operator
  92.         C_E(const C_E&);
  93.         C_E& operator=(const C_E&);
  94.     
  95.         // data
  96.         CRef< TAnyContent > m_AnyContent;
  97.     };
  98.     // types
  99.     typedef std::list< CRef< C_E > > Tdata;
  100.     // getters
  101.     // setters
  102.     // mandatory
  103.     // typedef std::list< CRef< C_E > > Tdata
  104. protected:
  105.     bool IsSet(void) const;
  106.     bool CanGet(void) const;
  107.     void Reset(void);
  108.     const Tdata& Get(void) const;
  109.     Tdata& Set(void);
  110.     operator const Tdata& (void) const;
  111.     operator Tdata& (void);
  112. private:
  113.     // Prohibit copy constructor and assignment operator
  114.     CSoapDetail(const CSoapDetail&);
  115.     CSoapDetail& operator=(const CSoapDetail&);
  116.     // data
  117.     Uint4 m_set_State[1];
  118.     Tdata m_data;
  119.     friend class CSoapMessage;
  120. };
  121. ///////////////////////////////////////////////////////////
  122. ///////////////////// inline methods //////////////////////
  123. ///////////////////////////////////////////////////////////
  124. inline
  125. bool CSoapDetail::C_E::IsSetAnyContent(void) const
  126. {
  127.     return m_AnyContent;
  128. }
  129. inline
  130. bool CSoapDetail::C_E::CanGetAnyContent(void) const
  131. {
  132.     return IsSetAnyContent();
  133. }
  134. inline
  135. const CAnyContentObject& CSoapDetail::C_E::GetAnyContent(void) const
  136. {
  137.     if (!CanGetAnyContent()) {
  138.         ThrowUnassigned(0);
  139.     }
  140.     return (*m_AnyContent);
  141. }
  142. inline
  143. CAnyContentObject& CSoapDetail::C_E::SetAnyContent(void)
  144. {
  145.     return (*m_AnyContent);
  146. }
  147. inline
  148. bool CSoapDetail::IsSet(void) const
  149. {
  150.     return ((m_set_State[0] & 0x3) != 0);
  151. }
  152. inline
  153. bool CSoapDetail::CanGet(void) const
  154. {
  155.     return true;
  156. }
  157. inline
  158. const std::list< CRef< CSoapDetail::C_E > >& CSoapDetail::Get(void) const
  159. {
  160.     return m_data;
  161. }
  162. inline
  163. std::list< CRef< CSoapDetail::C_E > >& CSoapDetail::Set(void)
  164. {
  165.     m_set_State[0] |= 0x1;
  166.     return m_data;
  167. }
  168. inline
  169. CSoapDetail::operator const std::list< CRef< CSoapDetail::C_E > >& (void) const
  170. {
  171.     return m_data;
  172. }
  173. inline
  174. CSoapDetail::operator std::list< CRef< CSoapDetail::C_E > >& (void)
  175. {
  176.     m_set_State[0] |= 0x1;
  177.     return m_data;
  178. }
  179. ///////////////////////////////////////////////////////////
  180. ////////////////// end of inline methods //////////////////
  181. ///////////////////////////////////////////////////////////
  182. END_NCBI_SCOPE
  183. #endif // SOAP_DETAIL_HPP
  184. /* --------------------------------------------------------------------------
  185. * $Log: soap_detail.hpp,v $
  186. * Revision 1000.0  2003/10/29 17:38:57  gouriano
  187. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  188. *
  189. * Revision 1.1  2003/09/25 19:46:21  gouriano
  190. * Added soap Fault object
  191. *
  192. *
  193. * ===========================================================================
  194. */