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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: algo.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/12 18:11:59  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.12
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___ALGO__HPP
  10. #define GUI_CORE___ALGO__HPP
  11. /*  $Id: algo.hpp,v 1000.2 2004/04/12 18:11:59 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CAlgorithm -- base class for GBENCH algorithms
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <gui/core/plugin.hpp>
  43. #include <gui/plugin/PluginCommand.hpp>
  44. #include <gui/plugin/PluginReply.hpp>
  45. BEGIN_NCBI_SCOPE
  46. //
  47. // Base class to wrap algorithm functionality
  48. //
  49. template <typename PluginType>
  50. class CAlgorithm : public CPlugin<PluginType>
  51. {
  52. public:
  53.     CAlgorithm(void) {}
  54.     virtual ~CAlgorithm(void) {}
  55.     virtual void RunCommand(objects::CPluginMessage& msg) = 0;
  56. private:
  57.     // Prohibit copying!
  58.     CAlgorithm(const CAlgorithm&);
  59.     CAlgorithm& operator= (const CAlgorithm&);
  60. };
  61. END_NCBI_SCOPE
  62. /*
  63.  * ===========================================================================
  64.  * $Log: algo.hpp,v $
  65.  * Revision 1000.2  2004/04/12 18:11:59  gouriano
  66.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.12
  67.  *
  68.  * Revision 1.12  2004/04/07 12:32:15  dicuccio
  69.  * Include guard moved
  70.  *
  71.  * Revision 1.11  2003/11/04 17:09:04  dicuccio
  72.  * Changed API to take a CPluginMessage instead of a paired command/reply
  73.  *
  74.  * Revision 1.10  2003/08/22 15:52:26  dicuccio
  75.  * Removed unneeded export specifier.  Removed 'USING_SCOPE(objects)'
  76.  *
  77.  * Revision 1.9  2003/07/14 10:54:07  shomrat
  78.  * Introduced CPlugin as base class for CAlgorithm
  79.  *
  80.  * Revision 1.8  2003/06/25 16:59:41  dicuccio
  81.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  82.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  83.  *
  84.  * Revision 1.7  2003/05/19 13:32:43  dicuccio
  85.  * Moved gui/core/plugin --> gui/plugin/
  86.  *
  87.  * Revision 1.6  2003/02/24 13:00:17  dicuccio
  88.  * Renamed classes in plugin spec:
  89.  *     CArgSeg --> CPluginArgSet
  90.  *     CArgument --> CPluginArg
  91.  *     CPluginArgs --> CPluginCommand
  92.  *     CPluginCommands --> CPluginCommandSet
  93.  *
  94.  * Revision 1.5  2003/02/20 19:44:06  dicuccio
  95.  * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  96.  * framework over to use new plugin architecture.
  97.  *
  98.  * Revision 1.4  2003/01/13 13:11:41  dicuccio
  99.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  100.  * Moved all FLUID-generated code into namespace ncbi.
  101.  *
  102.  * Revision 1.3  2002/12/19 18:13:02  dicuccio
  103.  * Added export specifiers for Win32.
  104.  *
  105.  * Revision 1.2  2002/11/07 18:20:12  dicuccio
  106.  * Moved #ifdef to top of file.
  107.  *
  108.  * Revision 1.1  2002/11/04 21:09:04  dicuccio
  109.  * Initial revision
  110.  *
  111.  * ===========================================================================
  112.  */
  113. #endif  // GUI_CORE___ALGO__HPP