Micro template library A library for building device drivers
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.
 
 
 
 

19 lines
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__ */