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.

75 lines
2.3 KiB

  1. /*
  2. * This program source code file is part of KICAD, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2016 CERN
  5. * Copyright (C) 2016-2017 KiCad Developers, see change_log.txt for contributors.
  6. *
  7. * @author Maciej Suminski <maciej.suminski@cern.ch>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, you may find one here:
  21. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  22. * or you may search the http://www.gnu.org website for the version 2 license,
  23. * or you may write to the Free Software Foundation, Inc.,
  24. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  25. */
  26. #ifndef BOARD_ITEM_CONTAINER_H
  27. #define BOARD_ITEM_CONTAINER_H
  28. #include <class_board_item.h>
  29. enum ADD_MODE { ADD_INSERT, ADD_APPEND };
  30. /**
  31. * @brief Abstract interface for BOARD_ITEMs capable of storing other items inside.
  32. * @see MODULE
  33. * @see BOARD
  34. */
  35. class BOARD_ITEM_CONTAINER : public BOARD_ITEM
  36. {
  37. public:
  38. BOARD_ITEM_CONTAINER( BOARD_ITEM* aParent, KICAD_T aType )
  39. : BOARD_ITEM( aParent, aType )
  40. {
  41. }
  42. virtual ~BOARD_ITEM_CONTAINER()
  43. {
  44. }
  45. /**
  46. * @brief Adds an item to the container.
  47. * @param aItem is an item to be added.
  48. * @param aMode decides whether the item is added in the beginning or at the end of the list.
  49. */
  50. virtual void Add( BOARD_ITEM* aItem, ADD_MODE aMode = ADD_INSERT ) = 0;
  51. /**
  52. * @brief Removes an item from the container.
  53. * @param aItem is an item to be removed.
  54. */
  55. virtual void Remove( BOARD_ITEM* aItem ) = 0;
  56. /**
  57. * @brief Removes an item from the containter and deletes it.
  58. * @param aItem is an item to be deleted.
  59. */
  60. virtual void Delete( BOARD_ITEM* aItem )
  61. {
  62. Remove( aItem );
  63. delete aItem;
  64. }
  65. };
  66. #endif /* BOARD_ITEM_CONTAINER_H */