X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvpp-api%2Fvom%2Facl_list.cpp;h=651eb87a4a95defdd7e6cb451f9f4b2226bdaa02;hb=756cd9441752fc8f84104c9ee19099506ba89f85;hp=5b03f5db02110c48e416719ec701f1d49d408de2;hpb=58c711a196d9b178bfe6190964a7df92145cf949;p=vpp.git diff --git a/src/vpp-api/vom/acl_list.cpp b/src/vpp-api/vom/acl_list.cpp index 5b03f5db021..651eb87a4a9 100644 --- a/src/vpp-api/vom/acl_list.cpp +++ b/src/vpp-api/vom/acl_list.cpp @@ -16,6 +16,7 @@ #include "vom/acl_list.hpp" #include "vom/acl_list_cmds.hpp" #include "vom/logger.hpp" +#include "vom/singular_db_funcs.hpp" namespace VOM { namespace ACL { @@ -69,6 +70,13 @@ l2_list::event_handler::handle_populate(const client_db::key_t& key) } } +template <> +void +l2_list::event_handler::show(std::ostream& os) +{ + db_dump(m_db, os); +} + template <> l3_list::event_handler::event_handler() { @@ -128,6 +136,13 @@ l3_list::event_handler::handle_populate(const client_db::key_t& key) } } +template <> +void +l3_list::event_handler::show(std::ostream& os) +{ + db_dump(m_db, os); +} + template <> void l3_list::update(const l3_list& obj)