hybrid iterator same to FSFW

This commit is contained in:
Robin Müller 2020-09-04 15:33:36 +02:00
parent fff0131c9b
commit cfa952d982
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
#ifndef FRAMEWORK_CONTAINER_HYBRIDITERATOR_H_
#define FRAMEWORK_CONTAINER_HYBRIDITERATOR_H_
#include "../container/ArrayList.h"
#include "../container/SinglyLinkedList.h"
#include "ArrayList.h"
#include "SinglyLinkedList.h"
template<typename T, typename count_t = uint8_t>
class HybridIterator: public LinkedElement<T>::Iterator,