Micro template library A library for building device drivers
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

33 linhas
1.2 KiB

  1. /*!
  2. * \file utl/core/impl.h
  3. * \brief Implementation detail main forward header
  4. *
  5. * \copyright
  6. * Copyright (C) 2018 Christos Choutouridis <christos@choutouridis.net>\n
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation, either version 3
  10. * of the License, or (at your option) any later version.\n
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Lesser General Public License for more details.\n
  15. * You should have received a copy of the GNU Lesser General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. #ifndef __utl_core_impl_h__
  20. #define __utl_core_impl_h__
  21. //! \defgroup core Core
  22. //! Provide compiler feature support macros, uTL version,
  23. //! global types etc...
  24. // FWD include implementation details once
  25. #include <utl/core/version.h>
  26. #include <utl/core/types.h>
  27. #include <utl/core/crtp.h>
  28. #endif /* __utl_core_impl_h__ */