| 28 | namespace phxbinlog { |
| 29 | |
| 30 | EventManager *EventManager::GetGlobalEventManager(const Option *option) { |
| 31 | static EventManager manager(option); |
| 32 | return &manager; |
| 33 | } |
| 34 | |
| 35 | EventManager::EventManager(const Option *option) { |
| 36 | StorageManager *storage_manager = StorageManager::GetGlobalStorageManager(option); |
nothing calls this directly
no outgoing calls
no test coverage detected