Answer the question
In order to leave comments, you need to log in
What should I write to prevent copying and transferring by all means?
The "frontal" code is quite complex.
class C {
C(const C&) = delete;
C(C&&) = delete;
C& operator = (const C&) = delete;
C& operator = (C&&) = delete;
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question