Micro template library A library for building device drivers
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

19 Zeilen
433 B

  1. /*!
  2. * \file utl/core/impl.h
  3. * \brief Implementation detail main forward header
  4. */
  5. #ifndef __utl_core_impl_h__
  6. #define __utl_core_impl_h__
  7. //! \defgroup core Core
  8. //! Provide compiler feature support macros, uTL version,
  9. //! global types etc...
  10. // FWD include implementation details once
  11. #include <utl/core/version.h>
  12. #include <utl/core/types.h>
  13. #include <utl/core/crtp.h>
  14. #endif /* __utl_core_impl_h__ */