home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / include / k3d / k3dsdk / iplugin_registry.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-11-07  |  1.9 KB  |  59 lines

  1. #ifndef K3DSDK_IPLUGIN_REGISTRY_H
  2. #define K3DSDK_IPLUGIN_REGISTRY_H
  3.  
  4. // K-3D
  5. // Copyright (c) 1995-2004, Timothy M. Shead
  6. //
  7. // Contact: tshead@k-3d.com
  8. //
  9. // This program is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. // General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public
  20. // License along with this program; if not, write to the Free Software
  21. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  
  23. /** \file
  24.         \brief Declares iplugin_registry, an abstract interface passed to plugin module entry points so they may register their plugin factories
  25.         \author Tim Shead (tshead@k-3d.com)
  26. */
  27.  
  28. #include "iunknown.h"
  29.  
  30. namespace k3d
  31. {
  32.  
  33. // Forward declarations ...
  34. class iplugin_factory;
  35.  
  36. /**
  37. \brief Abstract interface passed to plugin module entry points so they may register their plugin factories
  38. \note
  39. Your K-3D plugin module should export a function named "register_k3d_plugins" with the module_entry_point signature, which will
  40. be called at program startup.  In the implementation of "register_k3d_plugins", call register_factory() once for every plugin type your module provides.
  41. */
  42. class iplugin_registry :
  43.     public virtual iunknown
  44. {
  45. public:
  46.     /// Called to register a new plugin factory object
  47.     virtual void register_factory(iplugin_factory& Factory) = 0;
  48.  
  49. protected:
  50.     iplugin_registry() {}
  51.     iplugin_registry(const iplugin_registry&) {}
  52.     iplugin_registry& operator=(const iplugin_registry&) { return *this; }
  53.     virtual ~iplugin_registry() {}
  54. };
  55.  
  56. } // namespace k3d
  57.  
  58. #endif // !K3DSDK_IPLUGIN_REGISTRY_H
  59.