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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: PluginObject.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 18:14:47  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: PluginObject.hpp,v 1000.1 2004/04/12 18:14:47 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_PLUGINOBJECT_HPP
  45. #define GUI_PLUGIN_PLUGINOBJECT_HPP
  46. // generated includes
  47. #include <gui/core/idocument.hpp>
  48. #include <gui/plugin/PluginObject_.hpp>
  49. // generated classes
  50. BEGIN_NCBI_SCOPE
  51. BEGIN_objects_SCOPE // namespace ncbi::objects::
  52. class NCBI_XGBPLUGIN_EXPORT CPluginObject
  53.     : public CPluginObject_Base, public CSerialUserOp
  54. {
  55.     typedef CPluginObject_Base Tparent;
  56. public:
  57.     // constructor
  58.     CPluginObject(void);
  59.     // destructor
  60.     ~CPluginObject(void);
  61.     // overloaded Reset() - allows us to clear our derived types
  62.     void Reset(void);
  63.     // PostRead() - provides ability to set derived type
  64.     void PostRead();
  65.     // access the document for this object
  66.     const IDocument* GetDocument(void) const;
  67.     // access the object for this object
  68.     const CObject* GetObject(void) const;
  69.     // find out if this object is empty
  70.     bool IsEmpty(void) const;
  71.     void SetDocument(const IDocument* doc);
  72.     void SetObject(const string& type);
  73.     void SetObject(const CTypeInfo* info = NULL);
  74.     void SetObject(const IDocument* doc, const CObject* obj);
  75. protected:
  76.     // From CSerialUserOp
  77.     virtual void UserOp_Assign(const CSerialUserOp& source);
  78.     virtual bool UserOp_Equals(const CSerialUserOp& object) const;
  79.     // we must hold CConstRef<>s of our object to make sure they don't
  80.     // fall out of scope
  81.     CConstRef<IDocument> m_Document;
  82.     CConstRef<CObject>   m_Object;
  83. private:
  84.     // Prohibit copy constructor and assignment operator
  85.     CPluginObject(const CPluginObject& value);
  86.     CPluginObject& operator=(const CPluginObject& value);
  87. };
  88. /////////////////// CPluginObject inline methods
  89. // constructor
  90. inline
  91. CPluginObject::CPluginObject(void)
  92. {
  93. }
  94. inline
  95. const IDocument* CPluginObject::GetDocument(void) const
  96. {
  97.     return m_Document.GetPointer();
  98. }
  99. inline
  100. const CObject* CPluginObject::GetObject(void) const
  101. {
  102.     return m_Object.GetPointer();
  103. }
  104. inline
  105. bool CPluginObject::IsEmpty(void) const
  106. {
  107.     return ( !m_Document  &&  !m_Object );
  108. }
  109. /////////////////// end of CPluginObject inline methods
  110. END_objects_SCOPE // namespace ncbi::objects::
  111. END_NCBI_SCOPE
  112. NCBISER_HAVE_POST_READ(ncbi::objects::CPluginObject)
  113. /*
  114. * ===========================================================================
  115. *
  116. * $Log: PluginObject.hpp,v $
  117. * Revision 1000.1  2004/04/12 18:14:47  gouriano
  118. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.2
  119. *
  120. * Revision 1.2  2004/02/03 21:23:09  dicuccio
  121. * Added ClearObjects().  Added SetObjects() with string-based descriptor
  122. *
  123. * Revision 1.1  2003/10/27 17:32:19  dicuccio
  124. * Introduced CPluginObject to hold CPluginValue types when the type is an object.
  125. * Made CPluginValue a variant; removed ad hoc URL encoding
  126. *
  127. *
  128. * ===========================================================================
  129. */
  130. #endif // GUI_PLUGIN_PLUGINOBJECT_HPP
  131. /* Original file checksum: lines: 93, chars: 2452, CRC32: c82dc3f1 */