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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: net_blast_reply.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/12 19:27:52  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE_ALGO_NET_BLAST___NET_BLAST_REPLY__HPP
  10. #define GUI_CORE_ALGO_NET_BLAST___NET_BLAST_REPLY__HPP
  11. /*  $Id: net_blast_reply.hpp,v 1000.3 2004/04/12 19:27:52 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:  Clifford Clausen, Michael DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CDataPlugin_BlastReq -- passes Blast requests to Blast server
  40.  */
  41. #include <gui/core/doc_loader.hpp>
  42. #include <gui/plugin/PluginCommand.hpp>
  43. #include <gui/plugin/PluginReply.hpp>
  44. #include <gui/plugin/PluginInfo.hpp>
  45. #include <memory>
  46. BEGIN_NCBI_SCOPE
  47. class CBlastPollDlg;
  48. class CDataPlugin_BlastReply : public CDocLoader<CDataPlugin_BlastReply>
  49. {
  50. public:
  51.     CDataPlugin_BlastReply();
  52.     void Load(objects::CPluginMessage& msg);
  53.     static void GetInfo(objects::CPluginInfo& info);
  54. private:
  55.     auto_ptr<CBlastPollDlg> m_PollView;
  56. };
  57. END_NCBI_SCOPE
  58. /*
  59.  * ===========================================================================
  60.  * $Log: net_blast_reply.hpp,v $
  61.  * Revision 1000.3  2004/04/12 19:27:52  gouriano
  62.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6
  63.  *
  64.  * Revision 1.6  2004/03/05 17:32:15  dicuccio
  65.  * Large-scale clean-up to blast code.  Reorganized blast polling dialog to be
  66.  * multi-column; standardized options for BLAST network submissions; changed
  67.  * plugin to accept multiple locations for submission and create a submission for
  68.  * each
  69.  *
  70.  * Revision 1.5  2004/01/27 18:40:14  dicuccio
  71.  * Code clean-up.  Renamed plugin classes to follow standard pattern
  72.  *
  73.  * Revision 1.4  2003/11/06 20:12:12  dicuccio
  74.  * Cleaned up handling of USING_SCOPE - removed from all headers
  75.  *
  76.  * Revision 1.3  2003/11/04 17:49:22  dicuccio
  77.  * Changed calling parameters for plugins - pass CPluginMessage instead of paired
  78.  * CPluginCommand/CPluginReply
  79.  *
  80.  * Revision 1.2  2003/10/31 17:32:09  clausen
  81.  * Switched from passing scope to passing document
  82.  *
  83.  * Revision 1.1  2003/10/24 12:49:21  dicuccio
  84.  * Moved files from algo/net_blast
  85.  *
  86.  * Revision 1.8  2003/07/14 11:14:20  shomrat
  87.  * Plugin messageing system related changes
  88.  *
  89.  * Revision 1.7  2003/06/28 16:41:32  dicuccio
  90.  * Added <memory> for auto_ptr<>
  91.  *
  92.  * Revision 1.6  2003/06/20 19:45:19  dicuccio
  93.  * Fixed bizarre compile error related to namespaces on MSVC
  94.  *
  95.  * Revision 1.5  2003/06/20 14:52:11  dicuccio
  96.  * Revised plugin registration.  Made poll dialog a member of the plugin
  97.  *
  98.  * Revision 1.4  2003/06/04 18:29:48  clausen
  99.  * Initial version
  100.  *
  101.  * Revision 1.3  2003/06/02 16:06:21  dicuccio
  102.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  103.  *     - src/objects/asn2asn --> arc/app/asn2asn
  104.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  105.  *     - src/objects/objmgr --> src/objmgr
  106.  *     - src/objects/util --> src/objmgr/util
  107.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  108.  *     - src/objects/flat --> src/objtools/flat
  109.  *     - src/objects/validator --> src/objtools/validator
  110.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  111.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  112.  * replaces the three libmmdb? libs.
  113.  *
  114.  * Revision 1.2  2003/05/09 16:54:00  dicuccio
  115.  * Converted CDataPlugin_BlastReply from algorithm -> data loader plugin
  116.  *
  117.  * Revision 1.1  2003/05/07 12:38:59  clausen
  118.  * Initial version of net blast
  119.  *
  120.  * 
  121.  * ===========================================================================
  122.  */
  123. #endif  // GUI_CORE_ALGO_NET_BLAST___NET_BLAST_REQ__HPP