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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: soap_envelope.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:55:43  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: soap_envelope.hpp,v 1000.0 2003/10/29 17:55:43 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.  *   Holds SOAP message contents
  38. */
  39. #ifndef SOAP_ENVELOPE_HPP
  40. #define SOAP_ENVELOPE_HPP
  41. // standard includes
  42. #include <serial/serialbase.hpp>
  43. BEGIN_NCBI_SCOPE
  44. // forward declarations
  45. class CSoapBody;
  46. class CSoapHeader;
  47. // generated classes
  48. class CSoapEnvelope : public CSerialObject
  49. {
  50.     typedef CSerialObject Tparent;
  51. public:
  52.     // constructor
  53.     CSoapEnvelope(void);
  54.     // destructor
  55.     virtual ~CSoapEnvelope(void);
  56.     // type info
  57.     DECLARE_INTERNAL_TYPE_INFO();
  58.     // types
  59.     typedef CSoapHeader TSoapHeader;
  60.     typedef CSoapBody TSoapBody;
  61.     // getters
  62.     // setters
  63.     // optional
  64.     // typedef CSoapHeader TSoapHeader
  65.     bool IsSetHeader(void) const;
  66.     bool CanGetHeader(void) const;
  67.     void ResetHeader(void);
  68.     const TSoapHeader& GetHeader(void) const;
  69.     void SetHeader(TSoapHeader& value);
  70.     TSoapHeader& SetHeader(void);
  71.     // mandatory
  72.     // typedef CSoapBody TSoapBody
  73.     bool IsSetBody(void) const;
  74.     bool CanGetBody(void) const;
  75.     void ResetBody(void);
  76.     const TSoapBody& GetBody(void) const;
  77.     void SetBody(TSoapBody& value);
  78.     TSoapBody& SetBody(void);
  79.     // reset whole object
  80.     virtual void Reset(void);
  81. private:
  82.     // Prohibit copy constructor and assignment operator
  83.     CSoapEnvelope(const CSoapEnvelope&);
  84.     CSoapEnvelope& operator=(const CSoapEnvelope&);
  85.     // data
  86.     CRef< TSoapHeader > m_Header;
  87.     CRef< TSoapBody > m_Body;
  88. };
  89. ///////////////////////////////////////////////////////////
  90. ///////////////////// inline methods //////////////////////
  91. ///////////////////////////////////////////////////////////
  92. inline
  93. bool CSoapEnvelope::IsSetHeader(void) const
  94. {
  95.     return m_Header;
  96. }
  97. inline
  98. bool CSoapEnvelope::CanGetHeader(void) const
  99. {
  100.     return IsSetHeader();
  101. }
  102. inline
  103. const CSoapHeader& CSoapEnvelope::GetHeader(void) const
  104. {
  105.     if (!CanGetHeader()) {
  106.         ThrowUnassigned(0);
  107.     }
  108.     return (*m_Header);
  109. }
  110. inline
  111. bool CSoapEnvelope::IsSetBody(void) const
  112. {
  113.     return m_Body;
  114. }
  115. inline
  116. bool CSoapEnvelope::CanGetBody(void) const
  117. {
  118.     return IsSetBody();
  119. }
  120. inline
  121. const CSoapBody& CSoapEnvelope::GetBody(void) const
  122. {
  123.     if (!CanGetBody()) {
  124.         ThrowUnassigned(1);
  125.     }
  126.     return (*m_Body);
  127. }
  128. inline
  129. CSoapBody& CSoapEnvelope::SetBody(void)
  130. {
  131.     return (*m_Body);
  132. }
  133. ///////////////////////////////////////////////////////////
  134. ////////////////// end of inline methods //////////////////
  135. ///////////////////////////////////////////////////////////
  136. END_NCBI_SCOPE
  137. #endif // SOAP_ENVELOPE_HPP
  138. /* --------------------------------------------------------------------------
  139. * $Log: soap_envelope.hpp,v $
  140. * Revision 1000.0  2003/10/29 17:55:43  gouriano
  141. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  142. *
  143. * Revision 1.2  2003/09/25 19:45:33  gouriano
  144. * Added soap Fault object
  145. *
  146. *
  147. * ===========================================================================
  148. */