| 31 | }; |
| 32 | |
| 33 | int main() |
| 34 | { |
| 35 | struct NullLog : Log |
| 36 | { |
| 37 | void LogInfo(const string& message) const override |
| 38 | { |
| 39 | } |
| 40 | }; |
| 41 | |
| 42 | PaymentProcessing<NullLog> pp; |
| 43 | |
| 44 | getchar(); |
| 45 | return 0; |
| 46 | } |
nothing calls this directly
no outgoing calls
no test coverage detected