| 39 | using elf_unique_ptr = std::unique_ptr<Elf, std::function<void(Elf*)>>; |
| 40 | |
| 41 | class Analyzer |
| 42 | { |
| 43 | // Methods |
| 44 | public: |
| 45 | virtual const dwfl_unique_ptr& getDwfl() const = 0; |
| 46 | }; |
| 47 | |
| 48 | class CoreFileAnalyzer : public Analyzer |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected