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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: PluginRequest.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2003/11/05 15:24:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: PluginRequest.hpp,v 1000.1 2003/11/05 15:24:56 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_CORE_PLUGIN_PLUGINREQUEST_HPP
  45. #define GUI_CORE_PLUGIN_PLUGINREQUEST_HPP
  46. // generated includes
  47. #include <gui/plugin/PluginRequest_.hpp>
  48. #include <gui/plugin/AlgoCommand.hpp>
  49. #include <gui/plugin/DataCommand.hpp>
  50. #include <gui/plugin/ViewCommand.hpp>
  51. // generated classes
  52. BEGIN_NCBI_SCOPE
  53. BEGIN_objects_SCOPE // namespace ncbi::objects::
  54. class CPluginCommand;
  55. class NCBI_XGBPLUGIN_EXPORT CPluginRequest : public CPluginRequest_Base
  56. {
  57.     typedef CPluginRequest_Base Tparent;
  58. public:
  59.     // constructor
  60.     CPluginRequest(void);
  61.     // destructor
  62.     ~CPluginRequest(void);
  63.     // a plugin request is a variant selecting between three command types
  64.     // this utility returns the command objec, whichever one is set
  65.     const CPluginCommand& GetCommand(void) const;
  66.     CPluginCommand&       SetCommand(void);
  67.     // utility functions to ease the syntax of creating new commands
  68.     CPluginCommand& SetCommand(EAlgoCommand cmd);
  69.     CPluginCommand& SetCommand(EDataCommand cmd);
  70.     CPluginCommand& SetCommand(EViewCommand cmd);
  71. private:
  72.     // Prohibit copy constructor and assignment operator
  73.     CPluginRequest(const CPluginRequest& value);
  74.     CPluginRequest& operator=(const CPluginRequest& value);
  75. };
  76. /////////////////// CPluginRequest inline methods
  77. // constructor
  78. inline
  79. CPluginRequest::CPluginRequest(void)
  80. {
  81. }
  82. /////////////////// end of CPluginRequest inline methods
  83. END_objects_SCOPE // namespace ncbi::objects::
  84. END_NCBI_SCOPE
  85. /*
  86. * ===========================================================================
  87. *
  88. * $Log: PluginRequest.hpp,v $
  89. * Revision 1000.1  2003/11/05 15:24:56  gouriano
  90. * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.6
  91. *
  92. * Revision 1.6  2003/11/04 17:14:05  dicuccio
  93. * Added API to retrieve the command portion of the argument
  94. *
  95. * Revision 1.5  2003/05/19 13:33:02  dicuccio
  96. * Moved gui/core/plugin --> gui/plugin/
  97. *
  98. * Revision 1.4  2003/04/16 18:18:10  dicuccio
  99. * Renamed command retrieval functions to make them available for templates
  100. *
  101. * Revision 1.3  2003/02/24 13:00:18  dicuccio
  102. * Renamed classes in plugin spec:
  103. *     CArgSeg --> CPluginArgSet
  104. *     CArgument --> CPluginArg
  105. *     CPluginArgs --> CPluginCommand
  106. *     CPluginCommands --> CPluginCommandSet
  107. *
  108. * Revision 1.2  2003/02/21 16:44:13  dicuccio
  109. * Added Win32 export specifiers for new plugin library.  Fixed compilation
  110. * issues for Win32.
  111. *
  112. * Revision 1.1  2003/02/20 19:44:06  dicuccio
  113. * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  114. * framework over to use new plugin architecture.
  115. *
  116. *
  117. * ===========================================================================
  118. */
  119. #endif // GUI_CORE_PLUGIN_PLUGINREQUEST_HPP
  120. /* Original file checksum: lines: 93, chars: 2467, CRC32: 3ad7a1c6 */