See title.
I have:
class Foo { private: Foo(); public: static Foo* create(); }
What need I do from here to make Fo
Make the copy constructor and the assignment operator private as well. Just the declaration is enough, you don't have to provide an implementation.