
28 Mar
2010
28 Mar
'10
12:21 p.m.
Hello. I have a class like this: class MyClass : public trackable { unique_ptr<void ()> Signal1; ... }; This class is movable. So I move everything when transferring the internals. I would like to know if this is safe to do in the presence of a trackable base class or if when the moved instance is destroyed this could cause problems. Thanks.