6#ifndef ACTIVE_UTILITY_MOVER
7#define ACTIVE_UTILITY_MOVER
33 concept Movable = std::is_base_of<Mover, T>::value;
43 return std::unique_ptr<T>{item.movePtr()};
virtual Mover * movePtr()=0
Movable concept for classes/functions dependent on cloning with a move.
Definition Mover.h:33
Definition Base64Transport.h:11
auto cloneMove(T &&item)
Definition Mover.h:42