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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dll_register.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:59:55  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: dll_register.cpp,v 1000.1 2004/06/01 20:59:55 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 text viewer for GBENCH
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/core/view_factory.hpp>
  41. #include <gui/plugin/PluginInfo.hpp>
  42. #include <gui/core/version.hpp>
  43. #include "view_phylo_tree.hpp"
  44. USING_SCOPE(ncbi);
  45. DECLARE_VIEW_FACTORY(CPhyloTreeView);
  46. BEGIN_PLUGIN_REGISTRATION
  47.     REGISTER_VIEW_PLUGIN(CPhyloTreeView);    
  48. END_PLUGIN_REGISTRATION
  49. /*
  50.  * ===========================================================================
  51.  * $Log: dll_register.cpp,v $
  52.  * Revision 1000.1  2004/06/01 20:59:55  gouriano
  53.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  54.  *
  55.  * Revision 1.2  2004/05/21 22:27:49  gorelenk
  56.  * Added PCH ncbi_pch.hpp
  57.  *
  58.  * Revision 1.1  2004/02/17 23:45:52  tereshko
  59.  * Phylogenetic tree viewer plugin. Initial revision.
  60.  *
  61.  * Revision 1.15  2003/12/05 20:06:33  yazhuk
  62.  * Added registration for Hit Matrix view
  63.  *
  64.  * Revision 1.14  2003/06/20 14:53:51  dicuccio
  65.  * Revised plugin registration - moved GetInfo() into the plugin handler
  66.  *
  67.  * Revision 1.13  2003/05/19 13:43:32  dicuccio
  68.  * Moved gui/core/plugin --> gui/plugin/.  Merged core libraries into
  69.  * libgui_core
  70.  *
  71.  * Revision 1.12  2003/05/01 12:55:10  dicuccio
  72.  * Added annotation type constraint for alignemtn viewers
  73.  *
  74.  * Revision 1.11  2003/04/29 14:53:16  dicuccio
  75.  * Changed argument specification for dot-matrix alignment viewer
  76.  *
  77.  * Revision 1.10  2003/04/24 16:40:38  dicuccio
  78.  * Updated to reflect changes in plugin API.  Added new common alignment view
  79.  * base class - handles notions of creating alignment manager in a standard way
  80.  *
  81.  * Revision 1.9  2003/03/03 18:31:03  dicuccio
  82.  * Added factory for alignment informational view
  83.  *
  84.  * Revision 1.8  2003/02/24 13:03:17  dicuccio
  85.  * Renamed classes in plugin spec:
  86.  *     CArgSeg --> CPluginArgSet
  87.  *     CArgument --> CPluginArg
  88.  *     CPluginArgs --> CPluginCommand
  89.  *     CPluginCommands --> CPluginCommandSet
  90.  *
  91.  * Revision 1.7  2003/02/20 20:35:45  dicuccio
  92.  * Fixed compilation errors after commit of plugin architecture changes
  93.  *
  94.  * Revision 1.6  2003/02/20 19:49:58  dicuccio
  95.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH frameowrk
  96.  * over to use new plugin architecture.
  97.  *
  98.  * Revision 1.5  2003/01/13 13:10:08  dicuccio
  99.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace
  100.  * ncbi.  Moved all FLUID-generated code into namespace ncbi.
  101.  *
  102.  * Revision 1.4  2003/01/08 14:55:47  dicuccio
  103.  * Updated to match new type specification system
  104.  *
  105.  * Revision 1.3  2002/12/05 19:05:49  lebedev
  106.  * Cross Alignment Viewer added
  107.  *
  108.  * ===========================================================================
  109.  */