Array List Entry swapper function
And respective SerialAdapter functions to use it
This commit is contained in:
@ -2,8 +2,10 @@
|
||||
#define FIXEDARRAYLIST_H_
|
||||
|
||||
#include <framework/container/ArrayList.h>
|
||||
|
||||
/**
|
||||
* \ingroup container
|
||||
* @brief Array List with a fixed maximum size
|
||||
* @ingroup container
|
||||
*/
|
||||
template<typename T, uint32_t MAX_SIZE, typename count_t = uint8_t>
|
||||
class FixedArrayList: public ArrayList<T, count_t> {
|
||||
@ -17,10 +19,13 @@ public:
|
||||
//We could create a constructor to initialize the fixed array list with data and the known size field
|
||||
//so it can be used for serialization too (with SerialFixedArrrayListAdapter)
|
||||
//is this feasible?
|
||||
FixedArrayList(T * data_, count_t count):
|
||||
FixedArrayList(T * data_, count_t count, bool swapArrayListEndianess = false):
|
||||
ArrayList<T, count_t>(data, MAX_SIZE) {
|
||||
memcpy(this->data, data_, count);
|
||||
this->size = count;
|
||||
if(swapArrayListEndianess) {
|
||||
ArrayList<T, count_t>::swapArrayListEndianness();
|
||||
}
|
||||
}
|
||||
|
||||
FixedArrayList(const FixedArrayList& other) :
|
||||
|
Reference in New Issue
Block a user