| 9 | App* createApp(const string& name, const Config& conf); |
| 10 | |
| 11 | class LinearMethod { |
| 12 | public: |
| 13 | LinearMethod(const Config& conf) : conf_(conf) { } |
| 14 | virtual ~LinearMethod() { } |
| 15 | protected: |
| 16 | Config conf_; |
| 17 | }; |
| 18 | |
| 19 | } // namespace LM |
| 20 | } // namespace PS |
nothing calls this directly
no outgoing calls
no test coverage detected