Excitations.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef _Excitations_h_
  2. #define _Excitations_h_
  3. /* Excitations.h
  4. *
  5. * Copyright (C) 1993-2017 David Weenink, 2015,2016 Paul Boersma
  6. *
  7. * This code is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * This code is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include "Collection.h"
  21. #include "Excitation.h"
  22. #include "PatternList.h"
  23. #include "TableOfReal.h"
  24. #pragma mark - class ExcitationList
  25. Collection_define (ExcitationList, OrderedOf, Excitation) {
  26. };
  27. void ExcitationList_addItem_copy (ExcitationList me, Excitation you);
  28. void ExcitationList_addItems (ExcitationList me, OrderedOf <structExcitation> * list);
  29. autoExcitationList Excitations_to_ExcitationList (OrderedOf <structExcitation> * me);
  30. autoPatternList ExcitationList_to_PatternList (ExcitationList me, integer join);
  31. /* Precondition: my size >= 1, all items have same dimension */
  32. autoTableOfReal ExcitationList_to_TableOfReal (ExcitationList me);
  33. /* Precondition: my size >= 1, all items have same dimension */
  34. autoExcitation ExcitationList_extractItem (ExcitationList m, integer item);
  35. /* End of file Excitations.h */
  36. #endif