SerialBufferAdapter new setBuffer function
Serial Fixed Array List Adapter documentation adapted SinglyLinkedList setEnd() function added
This commit is contained in:
@ -58,6 +58,11 @@ public:
|
||||
virtual void setNext(LinkedElement* next) {
|
||||
this->next = next;
|
||||
}
|
||||
|
||||
void setEnd() {
|
||||
this->next = NULL;
|
||||
}
|
||||
|
||||
LinkedElement* begin() {
|
||||
return this;
|
||||
}
|
||||
|
Reference in New Issue
Block a user