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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: soap_reason.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:39:23  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: soap_reason.hpp,v 1000.0 2003/10/29 17:39:23 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 Reason object
  38.  *
  39.  * ===========================================================================
  40.  */
  41. #ifndef SOAP_REASON_HPP
  42. #define SOAP_REASON_HPP
  43. // standard includes
  44. #include <serial/serialbase.hpp>
  45. // generated includes
  46. #include <list>
  47. BEGIN_NCBI_SCOPE
  48. // forward declarations
  49. class CSoapText;
  50. // generated classes
  51. class CSoapReason : public CSerialObject
  52. {
  53.     typedef CSerialObject Tparent;
  54. public:
  55.     // constructor
  56.     CSoapReason(void);
  57.     // destructor
  58.     virtual ~CSoapReason(void);
  59.     // type info
  60.     DECLARE_INTERNAL_TYPE_INFO();
  61.     // types
  62.     typedef std::list< CRef< CSoapText > > TSoapText;
  63.     // getters
  64.     // setters
  65.     // mandatory
  66.     // typedef std::list< CRef< CSoapText > > TSoapText
  67.     bool IsSetSoapText(void) const;
  68.     bool CanGetSoapText(void) const;
  69.     void ResetSoapText(void);
  70.     const TSoapText& GetSoapText(void) const;
  71.     TSoapText& SetSoapText(void);
  72.     // reset whole object
  73.     virtual void Reset(void);
  74. private:
  75.     // Prohibit copy constructor and assignment operator
  76.     CSoapReason(const CSoapReason&);
  77.     CSoapReason& operator=(const CSoapReason&);
  78.     // data
  79.     Uint4 m_set_State[1];
  80.     TSoapText m_SoapText;
  81. };
  82. ///////////////////////////////////////////////////////////
  83. ///////////////////// inline methods //////////////////////
  84. ///////////////////////////////////////////////////////////
  85. inline
  86. bool CSoapReason::IsSetSoapText(void) const
  87. {
  88.     return ((m_set_State[0] & 0x3) != 0);
  89. }
  90. inline
  91. bool CSoapReason::CanGetSoapText(void) const
  92. {
  93.     return true;
  94. }
  95. inline
  96. const std::list< CRef< CSoapText > >& CSoapReason::GetSoapText(void) const
  97. {
  98.     return m_SoapText;
  99. }
  100. inline
  101. std::list< CRef< CSoapText > >& CSoapReason::SetSoapText(void)
  102. {
  103.     m_set_State[0] |= 0x1;
  104.     return m_SoapText;
  105. }
  106. ///////////////////////////////////////////////////////////
  107. ////////////////// end of inline methods //////////////////
  108. ///////////////////////////////////////////////////////////
  109. END_NCBI_SCOPE
  110. #endif // SOAP_REASON_HPP
  111. /* --------------------------------------------------------------------------
  112. * $Log: soap_reason.hpp,v $
  113. * Revision 1000.0  2003/10/29 17:39:23  gouriano
  114. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  115. *
  116. * Revision 1.1  2003/09/25 19:46:21  gouriano
  117. * Added soap Fault object
  118. *
  119. *
  120. * ===========================================================================
  121. */