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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dll_register.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 20:58:36  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: dll_register.cpp,v 1000.3 2004/06/01 20:58:36 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    Plug-in definition file for basic data loader plugins for GBENCH
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/core/dload_factory.hpp>
  41. #include "genemark_loader.hpp"
  42. #include "sage_reader.hpp"
  43. #include "five_column_reader.hpp"
  44. #include "user_feat_table_reader.hpp"
  45. USING_SCOPE(ncbi);
  46. DECLARE_DATA_FACTORY(CGeneMarkLoader);
  47. DECLARE_DATA_FACTORY(CSageReader);
  48. DECLARE_DATA_FACTORY(CFiveColumnReader);
  49. DECLARE_DATA_FACTORY(CUsrFeatTableReader);
  50. BEGIN_PLUGIN_REGISTRATION
  51.     REGISTER_DATA_PLUGIN(CGeneMarkLoader);
  52.     REGISTER_DATA_PLUGIN(CSageReader);
  53.     REGISTER_DATA_PLUGIN(CFiveColumnReader);
  54.     REGISTER_DATA_PLUGIN(CUsrFeatTableReader);
  55. END_PLUGIN_REGISTRATION
  56. /*
  57.  * ===========================================================================
  58.  * $Log: dll_register.cpp,v $
  59.  * Revision 1000.3  2004/06/01 20:58:36  gouriano
  60.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.11
  61.  *
  62.  * Revision 1.11  2004/05/21 22:27:48  gorelenk
  63.  * Added PCH ncbi_pch.hpp
  64.  *
  65.  * Revision 1.10  2003/11/14 19:13:54  jcherry
  66.  * Added tabular user feature loader
  67.  *
  68.  * Revision 1.9  2003/11/03 15:00:57  jcherry
  69.  * Added five-column table reader
  70.  *
  71.  * Revision 1.8  2003/10/07 13:42:25  dicuccio
  72.  * Added SAGE import plugin
  73.  *
  74.  * Revision 1.7  2003/06/20 14:52:58  dicuccio
  75.  * Revised plugin registration - moved GetInfo() into the plugin handler
  76.  *
  77.  * Revision 1.6  2003/05/19 13:40:45  dicuccio
  78.  * Moved gui/core/plugin/ -> gui/plugin/.  Merged core libraries into libgui_core.
  79.  * Removed old, unused dialog box.
  80.  *
  81.  * Revision 1.5  2003/02/24 13:03:16  dicuccio
  82.  * Renamed classes in plugin spec:
  83.  *     CArgSeg --> CPluginArgSet
  84.  *     CArgument --> CPluginArg
  85.  *     CPluginArgs --> CPluginCommand
  86.  *     CPluginCommands --> CPluginCommandSet
  87.  *
  88.  * Revision 1.4  2003/02/20 19:49:56  dicuccio
  89.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk
  90.  * over to use new plugin architecture.
  91.  *
  92.  * Revision 1.3  2003/01/13 13:10:07  dicuccio
  93.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  94.  * Moved all FLUID-generated code into namespace ncbi.
  95.  *
  96.  * Revision 1.2  2002/12/30 17:48:29  dicuccio
  97.  * Added mechanism for data loader plugins to announce supported modes of
  98.  * operation (load, import, save currently)
  99.  *
  100.  * Revision 1.1  2002/12/26 17:12:38  dernovoy
  101.  * Initial revision.
  102.  *
  103.  * ===========================================================================
  104.  */