Micro template library A library for building device drivers
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

35 行
1.3 KiB

  1. /*!
  2. * \file utl/meta/meta.h
  3. * \brief Meta library 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_meta_meta_h__
  20. #define __utl_meta_meta_h__
  21. //! \defgroup meta Meta
  22. //! An embedded metaprogramming library for uTL.
  23. //!
  24. #include <utl/meta/basic.h>
  25. #include <utl/meta/selection.h>
  26. #include <utl/meta/operations.h>
  27. #include <utl/meta/useif.h>
  28. #include <utl/meta/typelist.h>
  29. #include <utl/meta/detection.h>
  30. #include <utl/meta/invoke.h>
  31. #endif /* __utl_meta_meta_h__ */