1 #include "dump_entry.hpp"
2 
3 #include "dump_manager.hpp"
4 
5 #include <phosphor-logging/log.hpp>
6 
7 namespace phosphor
8 {
9 namespace dump
10 {
11 
12 using namespace phosphor::logging;
13 
14 void Entry::delete_()
15 {
16     // Remove Dump entry D-bus object
17     parent.erase(id);
18 }
19 
20 } // namespace dump
21 } // namespace phosphor
22