RuntimeLibraryLoader.hpp 631 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-09-06
  6. * Changed: 2022-09-06
  7. *
  8. * */
  9. #ifndef LS_STD_RUNTIME_LIBRARY_LOADER_HPP
  10. #define LS_STD_RUNTIME_LIBRARY_LOADER_HPP
  11. #include "RuntimeLibraryLoaderParameter.hpp"
  12. namespace ls::std::os
  13. {
  14. class RuntimeLibraryLoader
  15. {
  16. public:
  17. explicit RuntimeLibraryLoader(ls::std::os::RuntimeLibraryLoaderParameter _parameter);
  18. ~RuntimeLibraryLoader() = default;
  19. private:
  20. ls::std::os::RuntimeLibraryLoaderParameter parameter{};
  21. };
  22. }
  23. #endif