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.

46 lines
1.4 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2017 CERN
  5. * @author Maciej Suminski <maciej.suminski@cern.ch>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 3
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #ifndef DEFINE_ENUM_VECTOR
  21. /**
  22. * Macro to create const vectors containing enum values to enable easy iteration.
  23. *
  24. * Usage:
  25. * [header]
  26. * A {
  27. * DEFINE_ENUM_VECTOR( COLORS, { RED, GREEN, BLUE } );
  28. * };
  29. *
  30. * [source]
  31. * for( auto color : A::COLORS_vector ) {
  32. * // do sth with color
  33. * }
  34. *
  35. * DECLARE_ENUM_VECTOR( COLORS );
  36. */
  37. #define DEFINE_ENUM_VECTOR(enum_name, ...) \
  38. enum enum_name __VA_ARGS__; \
  39. static constexpr enum_name enum_name##_vector[] = __VA_ARGS__;
  40. #define DECLARE_ENUM_VECTOR(class_name, enum_name) \
  41. constexpr class_name::enum_name class_name::enum_name##_vector[];
  42. #endif