Newer
Older
Import / research / signals-slots / src / core / ruleofthree.h
@John Ryland John Ryland on 22 Dec 2020 293 bytes import NUC files

/*

When the default copy constructor won't do what is needed
then should consider that all these three functions are
needed.

class RuleOfThree
{
public:
    RuleOfThree(const RuleOfThree& copy);
    virtual ~RuleOfThree();
    const RuleOfThree& operator=(const RuleOfThree& copy);
};

*/