| 2 | namespace PS { |
| 3 | |
| 4 | class Engine : public Customer { |
| 5 | public: |
| 6 | Engine() : Customer("engine") { } |
| 7 | virtual ~Engine() { } |
| 8 | |
| 9 | void start() { |
| 10 | |
| 11 | } |
| 12 | void stop() { |
| 13 | |
| 14 | } |
| 15 | |
| 16 | private: |
| 17 | }; |
| 18 | |
| 19 | } // namespace PS |
nothing calls this directly
no outgoing calls
no test coverage detected