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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: PluginCommandSet.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 20:33:51  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: PluginCommandSet.hpp,v 1000.0 2003/10/31 20:33:51 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:  Mike DiCuccio, Denis Vakatov, Anatoliy Kuznetsov
  35.  *
  36.  * File Description:
  37.  *    CPluginCommandSet -- defines a set of similar commands exported by a
  38.  *                         plugin.  This class is used by a plugin to declare
  39.  *                         to the framework what sorts of commands are
  40.  *                         understood by a given plugin.
  41.  *
  42.  * Remark:
  43.  *   This code was originally generated by application DATATOOL
  44.  *   using specifications from the data definition file
  45.  *   'plugin.asn'.
  46.  */
  47. #ifndef GUI_CORE_PLUGIN_PLUGINCOMMANDS_HPP
  48. #define GUI_CORE_PLUGIN_PLUGINCOMMANDS_HPP
  49. // generated includes
  50. #include <gui/plugin/AlgoCommand.hpp>
  51. #include <gui/plugin/DataCommand.hpp>
  52. #include <gui/plugin/ViewCommand.hpp>
  53. #include <gui/plugin/PluginCommandSet_.hpp>
  54. // generated classes
  55. BEGIN_NCBI_SCOPE
  56. BEGIN_objects_SCOPE // namespace ncbi::objects::
  57. class NCBI_XGBPLUGIN_EXPORT CPluginCommandSet : public CPluginCommandSet_Base
  58. {
  59.     typedef CPluginCommandSet_Base Tparent;
  60. public:
  61.     // constructor
  62.     CPluginCommandSet(void);
  63.     // destructor
  64.     ~CPluginCommandSet(void);
  65.     // create and return a new plugin argument object for a given command
  66.     CPluginCommand& AddAlgoCommand(EAlgoCommand cmd);
  67.     CPluginCommand& AddDataCommand(EDataCommand cmd);
  68.     CPluginCommand& AddViewCommand(EViewCommand cmd);
  69. private:
  70.     // Prohibit copy constructor and assignment operator
  71.     CPluginCommandSet(const CPluginCommandSet& value);
  72.     CPluginCommandSet& operator=(const CPluginCommandSet& value);
  73. };
  74. /////////////////// CPluginCommandSet inline methods
  75. // constructor
  76. inline
  77. CPluginCommandSet::CPluginCommandSet(void)
  78. {
  79. }
  80. /////////////////// end of CPluginCommandSet inline methods
  81. END_objects_SCOPE // namespace ncbi::objects::
  82. END_NCBI_SCOPE
  83. /*
  84. * ===========================================================================
  85. *
  86. * $Log: PluginCommandSet.hpp,v $
  87. * Revision 1000.0  2003/10/31 20:33:51  gouriano
  88. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  89. *
  90. * Revision 1.2  2003/05/19 13:33:02  dicuccio
  91. * Moved gui/core/plugin --> gui/plugin/
  92. *
  93. * Revision 1.1  2003/02/24 13:00:18  dicuccio
  94. * Renamed classes in plugin spec:
  95. *     CArgSeg --> CPluginArgSet
  96. *     CArgument --> CPluginArg
  97. *     CPluginArgs --> CPluginCommand
  98. *     CPluginCommands --> CPluginCommandSet
  99. *
  100. * Revision 1.2  2003/02/21 16:44:13  dicuccio
  101. * Added Win32 export specifiers for new plugin library.  Fixed compilation
  102. * issues for Win32.
  103. *
  104. * Revision 1.1  2003/02/20 19:44:06  dicuccio
  105. * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  106. * framework over to use new plugin architecture.
  107. *
  108. *
  109. * ===========================================================================
  110. */
  111. #endif // GUI_CORE_PLUGIN_PLUGINCOMMANDS_HPP
  112. /* Original file checksum: lines: 93, chars: 2484, CRC32: 72dfb433 */