Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EngineFactory.h 2.0KB

12 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /***************************************************************************
  2. * *
  3. * Copyright (C) 2005-2007 Christian Schoenebeck *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation; either version 2 of the License, or *
  8. * (at your option) any later version. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License *
  16. * along with this program; if not, write to the Free Software *
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
  18. * MA 02111-1307 USA *
  19. ***************************************************************************/
  20. #ifndef __LS_ENGINEFACTORY_H__
  21. #define __LS_ENGINEFACTORY_H__
  22. #include <linuxsampler/engines/Engine.h>
  23. #include <set>
  24. #include <vector>
  25. namespace LinuxSampler {
  26. class EngineFactory {
  27. public:
  28. static std::vector<String> AvailableEngineTypes();
  29. static String AvailableEngineTypesAsString();
  30. static Engine* Create(String EngineType) throw (Exception);
  31. static void Destroy(Engine* pEngine);
  32. static const std::set<Engine*>& EngineInstances();
  33. protected:
  34. static void Erase(Engine* pEngine);
  35. friend class Engine;
  36. };
  37. } // namespace LinuxSampler
  38. #endif // __LS_ENGINEFACTORY_H__