Array List Entry swapper function
And respective SerialAdapter functions to use it
This commit is contained in:
@ -19,6 +19,10 @@
|
||||
template<typename T>
|
||||
class SerializeElement : public SerializeIF, public LinkedElement<SerializeIF> {
|
||||
public:
|
||||
/**
|
||||
* Arguments are forwarded to the element datatype constructor
|
||||
* @param args
|
||||
*/
|
||||
template<typename... Args>
|
||||
SerializeElement(Args... args) : LinkedElement<SerializeIF>(this), entry(std::forward<Args>(args)...) {
|
||||
|
||||
|
Reference in New Issue
Block a user