Constructors
| 15 | public: |
| 16 | // Constructors |
| 17 | explicit ConsoleAdapter(const std::shared_ptr<PresentEvent>& p) : ptr_(p.get()) {} |
| 18 | explicit ConsoleAdapter(const PresentEvent* p) : ptr_(p) {} |
| 19 | |
| 20 | // Inline getters - compile to direct field access (zero overhead) |
nothing calls this directly
no outgoing calls
no test coverage detected