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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: PluginMessage.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 18:14:45  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: PluginMessage.hpp,v 1000.1 2004/04/12 18:14:45 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:  .......
  35.  *
  36.  * File Description:
  37.  *   .......
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the data definition file
  42.  *   'plugin.asn'.
  43.  */
  44. #ifndef GUI_PLUGIN_PLUGINMESSAGE_HPP
  45. #define GUI_PLUGIN_PLUGINMESSAGE_HPP
  46. #include <corelib/ncbistre.hpp>
  47. #include <gui/utils/reporter.hpp>
  48. // generated includes
  49. #include <gui/plugin/PluginMessage_.hpp>
  50. // generated classes
  51. BEGIN_NCBI_SCOPE
  52. BEGIN_objects_SCOPE // namespace ncbi::objects::
  53. class NCBI_XGBPLUGIN_EXPORT CPluginMessage : public CPluginMessage_Base
  54. {
  55.     typedef CPluginMessage_Base Tparent;
  56. public:
  57.     // constructor
  58.     CPluginMessage(void);
  59.     // destructor
  60.     ~CPluginMessage(void);
  61.     typedef unsigned int        TId;
  62.     TId GetId(void) const;
  63.     string ToString(void) const;
  64.     void             SetReporter(IReporter* reporter);
  65.     IReporter*       SetReporter();
  66.     const IReporter* GetReporter() const;
  67. private:
  68.     // Prohibit copy constructor and assignment operator
  69.     CPluginMessage(const CPluginMessage& value);
  70.     CPluginMessage& operator=(const CPluginMessage& value);
  71.     // data
  72.     TId               m_Id;
  73.     IReporter* m_Reporter;
  74. };
  75. /////////////////// CPluginMessage inline methods
  76. inline
  77. CPluginMessage::TId CPluginMessage::GetId(void) const
  78. {
  79.     return m_Id;
  80. }
  81. inline
  82. CNcbiOstream& operator<< (const CPluginMessage& msg, CNcbiOstream& os) {
  83.     os << msg.ToString();
  84.     return os;
  85. }
  86. /////////////////// end of CPluginMessage inline methods
  87. END_objects_SCOPE // namespace ncbi::objects::
  88. END_NCBI_SCOPE
  89. /*
  90. * ===========================================================================
  91. *
  92. * $Log: PluginMessage.hpp,v $
  93. * Revision 1000.1  2004/04/12 18:14:45  gouriano
  94. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
  95. *
  96. * Revision 1.4  2004/03/31 15:24:42  dicuccio
  97. * Added IReporter member in derived class
  98. *
  99. * Revision 1.3  2003/08/05 16:58:07  dicuccio
  100. * Removed mutex in PluginMessage - replace with CAtomicCounter
  101. *
  102. * Revision 1.2  2003/07/15 01:58:05  ucko
  103. * Make the guard for sm_NextId a static class member, since Darwin's
  104. * shared-library linker doesn't like inline functions with static locals.
  105. *
  106. * Revision 1.1  2003/07/14 11:06:23  shomrat
  107. * Initial Revision
  108. *
  109. *
  110. * ===========================================================================
  111. */
  112. #endif // GUI_PLUGIN_PLUGINMESSAGE_HPP
  113. /* Original file checksum: lines: 93, chars: 2469, CRC32: abd79101 */