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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: genbank_loader.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 20:58:00  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.14
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_PLUGINS_DOC_BASIC___GENBANK_LOADER__HPP
  10. #define GUI_PLUGINS_DOC_BASIC___GENBANK_LOADER__HPP
  11. /*  $Id: genbank_loader.hpp,v 1000.3 2004/06/01 20:58:00 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.  *    CDataPlugin_GenbankLoader - load sequence information form Genbank.
  40.  */
  41. #include <gui/core/doc_loader.hpp>
  42. #include <gui/plugin/PluginInfo.hpp>
  43. #include <objmgr/scope.hpp>
  44. BEGIN_NCBI_SCOPE
  45. class CDataPlugin_GenbankLoader : public CDocLoader<CDataPlugin_GenbankLoader>
  46. {
  47. public:
  48.     CDataPlugin_GenbankLoader();
  49.     ~CDataPlugin_GenbankLoader();
  50.     // load a given document
  51.     void Load(objects::CPluginMessage& msg);
  52.     static void GetInfo(objects::CPluginInfo& info);
  53. };
  54. END_NCBI_SCOPE
  55. #endif  // GUI_PLUGINS_DOC_BASIC___GENBANK_LOADER__HPP
  56. /*
  57.  * ===========================================================================
  58.  * $Log: genbank_loader.hpp,v $
  59.  * Revision 1000.3  2004/06/01 20:58:00  gouriano
  60.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.14
  61.  *
  62.  * Revision 1.14  2004/05/25 17:21:59  dicuccio
  63.  * Modified class names.  Fonts to 12 point
  64.  *
  65.  * Revision 1.13  2003/12/05 13:07:54  dicuccio
  66.  * Split management interface into a separate plugin.  Fixed linker error
  67.  * introduced with status bar
  68.  *
  69.  * Revision 1.12  2003/11/04 17:49:25  dicuccio
  70.  * Changed calling parameters for plugins - pass CPluginMessage instead of paired
  71.  * CPluginCommand/CPluginReply
  72.  *
  73.  * Revision 1.11  2003/10/10 17:19:00  dicuccio
  74.  * Added Manage() interface.
  75.  *
  76.  * Revision 1.10  2003/09/29 15:39:10  dicuccio
  77.  * Header file clean-up.  Deprecated gui/scope.hpp and gui/core/types.hpp.  Added
  78.  * GenBank data loader management dialog
  79.  *
  80.  * Revision 1.9  2003/07/14 11:16:49  shomrat
  81.  * Plugin messageing system related changes
  82.  *
  83.  * Revision 1.8  2003/06/20 14:52:57  dicuccio
  84.  * Revised plugin registration - moved GetInfo() into the plugin handler
  85.  *
  86.  * Revision 1.7  2003/06/02 16:06:22  dicuccio
  87.  * Rearranged src/objects/ subtree.  This includes the following shifts:
  88.  *     - src/objects/asn2asn --> arc/app/asn2asn
  89.  *     - src/objects/testmedline --> src/objects/ncbimime/test
  90.  *     - src/objects/objmgr --> src/objmgr
  91.  *     - src/objects/util --> src/objmgr/util
  92.  *     - src/objects/alnmgr --> src/objtools/alnmgr
  93.  *     - src/objects/flat --> src/objtools/flat
  94.  *     - src/objects/validator --> src/objtools/validator
  95.  *     - src/objects/cddalignview --> src/objtools/cddalignview
  96.  * In addition, libseq now includes six of the objects/seq... libs, and libmmdb
  97.  * replaces the three libmmdb? libs.
  98.  *
  99.  * Revision 1.6  2003/05/19 13:40:44  dicuccio
  100.  * Moved gui/core/plugin/ -> gui/plugin/.  Merged core libraries into libgui_core.
  101.  * Removed old, unused dialog box.
  102.  *
  103.  * Revision 1.5  2003/02/24 13:03:16  dicuccio
  104.  * Renamed classes in plugin spec:
  105.  *     CArgSeg --> CPluginArgSet
  106.  *     CArgument --> CPluginArg
  107.  *     CPluginArgs --> CPluginCommand
  108.  *     CPluginCommands --> CPluginCommandSet
  109.  *
  110.  * Revision 1.4  2003/02/20 19:49:56  dicuccio
  111.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk
  112.  * over to use new plugin architecture.
  113.  *
  114.  * Revision 1.3  2003/01/13 13:10:07  dicuccio
  115.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  116.  * Moved all FLUID-generated code into namespace ncbi.
  117.  *
  118.  * Revision 1.2  2002/12/30 17:55:42  dicuccio
  119.  * Added new virtual requirement: Save() (not handled by some plugins; return
  120.  * values should be obeyed)
  121.  *
  122.  * Revision 1.1  2002/11/25 20:51:01  dicuccio
  123.  * Initial revision.
  124.  *
  125.  * ===========================================================================
  126.  */