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 private.
Foo(const Foo& src);
You don't need to implement it, just declare it in the header file.