⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dll_register.cpp

📁 ncbi源码
💻 CPP
字号:
/* * =========================================================================== * PRODUCTION $Log: dll_register.cpp,v $ * PRODUCTION Revision 1000.3  2004/06/01 21:00:28  gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15 * PRODUCTION * =========================================================================== *//*  $Id: dll_register.cpp,v 1000.3 2004/06/01 21:00:28 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 tabular views for GBENCH */#include <ncbi_pch.hpp>#include <gui/core/view_factory.hpp>#include <gui/plugin/PluginInfo.hpp>#include <gui/core/version.hpp>#include "view_alntable.hpp"#include "view_feattable.hpp"#include "view_featid.hpp"USING_SCOPE(ncbi);DECLARE_VIEW_FACTORY(CViewFeatTable);DECLARE_VIEW_FACTORY(CViewAlnTable);DECLARE_VIEW_FACTORY(CViewFeatId);BEGIN_PLUGIN_REGISTRATION    REGISTER_VIEW_PLUGIN(CViewFeatTable);    REGISTER_VIEW_PLUGIN(CViewAlnTable);    REGISTER_VIEW_PLUGIN(CViewFeatId);END_PLUGIN_REGISTRATION/* * =========================================================================== * $Log: dll_register.cpp,v $ * Revision 1000.3  2004/06/01 21:00:28  gouriano * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15 * * Revision 1.15  2004/05/21 22:27:49  gorelenk * Added PCH ncbi_pch.hpp * * Revision 1.14  2004/04/16 14:47:27  dicuccio * Enabled alignment table view.  Use appropriate ISelection interface for dynamic menus * * Revision 1.13  2004/04/07 13:03:44  dicuccio * Added (commented out) use of CViewAlnTable * * Revision 1.12  2004/01/13 20:38:46  dicuccio * Added new view: feature IDs * * Revision 1.11  2003/12/22 19:32:23  dicuccio * Lots of code clean-up.  Changed to match new APIs in IView.  Added first pass * at processing selections (not entirely working) * * Revision 1.10  2003/06/20 14:53:53  dicuccio * Revised plugin registration - moved GetInfo() into the plugin handler * * Revision 1.9  2003/05/19 13:46:51  dicuccio * Moved gui/core/plugin/ --> gui/plugin/.  Merged core libraries into * libgui_core.so * * Revision 1.8  2003/04/24 16:42:52  dicuccio * Updated to reflect changes in CDocument, plugin API * * Revision 1.7  2003/02/24 13:03:18  dicuccio * Renamed classes in plugin spec: *     CArgSeg --> CPluginArgSet *     CArgument --> CPluginArg *     CPluginArgs --> CPluginCommand *     CPluginCommands --> CPluginCommandSet * * Revision 1.6  2003/02/20 20:35:46  dicuccio * Fixed compilation errors after commit of plugin architecture changes * * Revision 1.5  2003/02/20 19:50:00  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:09  dicuccio * Namespace clean-up.  Retired namespace gui -> converted all to namespace * ncbi.  Moved all FLUID-generated code into namespace ncbi. * * Revision 1.3  2003/01/08 14:56:37  dicuccio * Updated to match new type specification system * * Revision 1.2  2002/12/30 20:51:10  dicuccio * Tweaks for compiling on Windows * * Revision 1.1  2002/12/30 18:49:41  dicuccio * Initial revision * * =========================================================================== */

⌨️ 快捷键说明

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