supervisor_config_fltk.h 568 B

12345678910111213141516171819202122
  1. #pragma once
  2. //
  3. // Copyright (c) 2019-2024 Ivan Baidakou (basiliscos) (the dot dmol at gmail dot com)
  4. //
  5. // Distributed under the MIT Software License
  6. //
  7. #include "rotor/supervisor_config.h"
  8. namespace rotor {
  9. namespace fltk {
  10. /** \brief alias for supervisor config */
  11. using supervisor_config_fltk_t = supervisor_config_t;
  12. /** \brief CRTP supervisor fltk config builder (just an alias for generic builder) */
  13. template <typename Supervisor> using supervisor_config_fltk_builder_t = supervisor_config_builder_t<Supervisor>;
  14. } // namespace fltk
  15. } // namespace rotor