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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: registry.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 20:22:56  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___REGISTRY__HPP
  10. #define GUI_CORE___REGISTRY__HPP
  11. /*  $Id: registry.hpp,v 1000.0 2003/10/31 20:22:56 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.  *    Base class for GBENCH plug-in registries
  40.  */
  41. #include <gui/scope.hpp>
  42. #include <gui/core/plugin.hpp>
  43. #include <corelib/ncbiobj.hpp>
  44. BEGIN_NCBI_SCOPE
  45. //
  46. // Base class for the plugin registry
  47. //
  48. class NCBI_GUICORE_EXPORT CPluginRegistry : public CObject
  49. {
  50. public:
  51.     // Typedef for the version function common to all plug-ins
  52.     typedef void (*FVersionFunc)(int&, int&, int&);
  53.     // Typedef for lists of generic plugin info objects
  54.     typedef list< CRef<CPlugin> > TPlugins;
  55.     // virtual dtor to get a real virtual table
  56.     virtual ~CPluginRegistry() { }
  57. protected:
  58.     // protected ctor
  59.     CPluginRegistry() { }
  60.     // Extract a list of plugin info objects from the given path.
  61.     // This accepts a colon-separated path listing that tracks the directories
  62.     // that should be searched.  The 'type' designator refers to the type of
  63.     // plug-in that will be extracted (i.e., view or algo).
  64.     static TPlugins x_GetPlugins(const string& path, const string& type);
  65. private:
  66.     // copying prohibited
  67.     CPluginRegistry(const CPluginRegistry&);
  68.     CPluginRegistry& operator= (const CPluginRegistry&);
  69. };
  70. END_NCBI_SCOPE
  71. #endif  // GUI_CORE___REGISTRY__HPP
  72. /*
  73.  * ===========================================================================
  74.  * $Log: registry.hpp,v $
  75.  * Revision 1000.0  2003/10/31 20:22:56  gouriano
  76.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.8
  77.  *
  78.  * Revision 1.8  2003/01/13 13:11:42  dicuccio
  79.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  80.  * Moved all FLUID-generated code into namespace ncbi.
  81.  *
  82.  * Revision 1.7  2003/01/10 17:40:48  dicuccio
  83.  * Added accessor to determine if a plugin has been loaded yet.  Changed
  84.  * TPluginList --> TPlugins.  Added accessors for all available plugins.
  85.  *
  86.  * Revision 1.6  2002/12/19 18:13:02  dicuccio
  87.  * Added export specifiers for Win32.
  88.  *
  89.  * Revision 1.5  2002/12/11 18:54:42  dicuccio
  90.  * Minor tweak to avoid a compiler warning about private constructors.
  91.  *
  92.  * Revision 1.4  2002/12/05 16:30:04  dicuccio
  93.  * Changed 'EXPORT_PLUGIN' to 'NCBI_GUICORE_EXPORT' to match planned API for remainder
  94.  * of toolkit.  Added __declspec() macros for gui toolkit (windows dll
  95.  * compatibility).
  96.  *
  97.  * Revision 1.3  2002/11/07 18:22:43  dicuccio
  98.  * Clean-up of plug-in architecture.  Provided macros for handling plug-in
  99.  * registration functions.
  100.  *
  101.  * Revision 1.2  2002/11/05 19:47:06  dicuccio
  102.  * Some of CPluginRegistry::x_GetPlugins() functionality moved to the
  103.  * GBENCH application
  104.  *
  105.  * Revision 1.1  2002/11/04 21:09:06  dicuccio
  106.  * Initial revision
  107.  *
  108.  * ===========================================================================
  109.  */