I have a class that cannot be copied (that is, the copy constructor and assignment operator are marked as "delete"). I would like to save them in std :: vector.
This is a RAII class, so just storing a pointer or a reference to it is not what I'm looking for.
My knowledge of the new initializer lists and move constructors is somewhat limited, is this possible?
c ++ c ++ 11 move-semantics stl
Lieuwe
source share