dll_register.cpp

来自「ncbi源码」· C++ 代码 · 共 183 行

CPP
183
字号
/* * =========================================================================== * PRODUCTION $Log: dll_register.cpp,v $ * PRODUCTION Revision 1000.2  2004/06/01 20:57:27  gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.25 * PRODUCTION * =========================================================================== *//*  $Id: dll_register.cpp,v 1000.2 2004/06/01 20:57:27 gouriano Exp $ * =========================================================================== * *                            PUBLIC DOMAIN NOTICE *               National Center for Biotechnology Information * *  This software/database is a "United States Government Work" under the *  terms of the United States Copyright Act.  It was written as part of *  the author's official duties as a United States Government employee and *  thus cannot be copyrighted.  This software/database is freely available *  to the public for use. The National Library of Medicine and the U.S. *  Government have not placed any restriction on its use or reproduction. * *  Although all reasonable efforts have been taken to ensure the accuracy *  and reliability of the software and data, the NLM and the U.S. *  Government do not and cannot warrant the performance or results that *  may be obtained by using this software or data. The NLM and the U.S. *  Government disclaim all warranties, express or implied, including *  warranties of performance, merchantability or fitness for any particular *  purpose. * *  Please cite the author in any work or product based on this material. * * =========================================================================== * * Authors:  Mike DiCuccio * * File Description: *    Plug-in definition file for basic data loader plugins for GBENCH */#include <ncbi_pch.hpp>#include <gui/core/dload_factory.hpp>#include "genbank_loader.hpp"#include "entrez_search.hpp"#include "gbmanage.hpp"#include "file_loader.hpp"#include "file_export.hpp"#include "indexed_export.hpp"#include "lds_loader.hpp"#include "agp_reader.hpp"#include "tree_export.hpp"#include "tree_loader.hpp"USING_SCOPE(ncbi);//// static factory declarations//DECLARE_DATA_FACTORY(CDataPlugin_FileLoader);DECLARE_DATA_FACTORY(CDataPlugin_FileExport);DECLARE_DATA_FACTORY(CDataPlugin_IndexedExport);DECLARE_DATA_FACTORY(CDataPlugin_GenbankLoader);DECLARE_DATA_FACTORY(CDataPlugin_EntrezSearch);DECLARE_DATA_FACTORY(CDataPlugin_GBManage);DECLARE_DATA_FACTORY(CDataPlugin_LDSLoader);DECLARE_DATA_FACTORY(CDataPlugin_AgpReader);DECLARE_DATA_FACTORY(CDataPlugin_TreeExport);DECLARE_DATA_FACTORY(CDataPlugin_TreeLoader);BEGIN_PLUGIN_REGISTRATION    REGISTER_DATA_PLUGIN(CDataPlugin_FileLoader);    REGISTER_DATA_PLUGIN(CDataPlugin_FileExport);    REGISTER_DATA_PLUGIN(CDataPlugin_IndexedExport);    REGISTER_DATA_PLUGIN(CDataPlugin_GenbankLoader);    REGISTER_DATA_PLUGIN(CDataPlugin_EntrezSearch);    REGISTER_DATA_PLUGIN(CDataPlugin_GBManage);    REGISTER_DATA_PLUGIN(CDataPlugin_LDSLoader);    REGISTER_DATA_PLUGIN(CDataPlugin_AgpReader);    REGISTER_DATA_PLUGIN(CDataPlugin_TreeExport);    REGISTER_DATA_PLUGIN(CDataPlugin_TreeLoader);END_PLUGIN_REGISTRATION/* * =========================================================================== * $Log: dll_register.cpp,v $ * Revision 1000.2  2004/06/01 20:57:27  gouriano * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.25 * * Revision 1.25  2004/05/25 17:21:59  dicuccio * Modified class names.  Fonts to 12 point * * Revision 1.24  2004/05/21 22:27:48  gorelenk * Added PCH ncbi_pch.hpp * * Revision 1.23  2004/02/24 20:45:15  ucko * Stop trying to include the removed clustal reader's header. * * Revision 1.22  2004/02/24 18:38:48  jcherry * Removed clustal reader * * Revision 1.21  2004/02/24 18:11:41  jcherry * Added clustal reader * * Revision 1.20  2004/02/17 05:54:00  jcherry * Added phylogenetic tree reader and writer plugins * * Revision 1.19  2004/01/21 16:22:59  tereshko * CShiReader moved out * * Revision 1.18  2004/01/14 16:35:26  tereshko * Added CShiReader data plugin to registration * * Revision 1.17  2003/12/09 00:25:57  jcherry * Added agp reader * * Revision 1.16  2003/12/05 13:07:52  dicuccio * Split management interface into a separate plugin.  Fixed linker error * introduced with status bar * * Revision 1.15  2003/10/07 13:41:13  dicuccio * Added indexed export plugin * * Revision 1.14  2003/09/16 14:07:58  dicuccio * Added file export plugin * * Revision 1.13  2003/07/31 17:04:00  dicuccio * Added GenBank search * * Revision 1.12  2003/06/20 14:52:57  dicuccio * Revised plugin registration - moved GetInfo() into the plugin handler * * Revision 1.11  2003/06/17 20:17:04  kuznets * Added plugin factory infrastructure for LDS. * * Revision 1.10  2003/05/19 13:40:44  dicuccio * Moved gui/core/plugin/ -> gui/plugin/.  Merged core libraries into libgui_core. * Removed old, unused dialog box. * * Revision 1.9  2003/05/09 17:06:38  dicuccio * Cleaned up plugin declaration.  Removed empty document plugin - it's * unnecessary * * Revision 1.8  2003/04/29 14:52:31  dicuccio * Deprecated old accession entry dialog.  Added correct plugin argument to * specify accession names * * Revision 1.7  2003/04/24 16:39:08  dicuccio * Updated to reflect changes in plugin API.  Changed location of document * marshal from framework to plugin * * Revision 1.6  2003/02/24 13:03:16  dicuccio * Renamed classes in plugin spec: *     CArgSeg --> CPluginArgSet *     CArgument --> CPluginArg *     CPluginArgs --> CPluginCommand *     CPluginCommands --> CPluginCommandSet * * Revision 1.5  2003/02/20 19:49:56  dicuccio * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk * over to use new plugin architecture. * * Revision 1.4  2003/01/13 13:10:07  dicuccio * Namespace clean-up.  Retired namespace gui -> converted all to namespace * ncbi.  Moved all FLUID-generated code into namespace ncbi. * * Revision 1.3  2002/12/30 17:48:28  dicuccio * Added mechanism for data loader plugins to announce supported modes of * operation (load, import, save currently) * * Revision 1.2  2002/12/09 20:34:51  dicuccio * Added empty document plugin * * Revision 1.1  2002/11/25 20:51:01  dicuccio * Initial revision. * * =========================================================================== */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?