| 7 | public: |
| 8 | std::string name() const { return mName; } |
| 9 | static Example* factory() |
| 10 | { |
| 11 | return new Example("factory"); |
| 12 | } |
| 13 | static Example* singleton() |
| 14 | { |
| 15 | static Example instance = Example("singleton"); |
no outgoing calls
no test coverage detected