From 9ef1c0adbf9399c55deeede3cf629dd4e8c20304 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Fri, 3 Nov 2017 04:39:05 -0700 Subject: VOM reshuffle split the VOM into two halves; a top/front-end and a bottom/backend. Only the backend includes the auto-generated VAPI. This serves two purposes: 1 - improves ompile times for VOM, since the VAPI is included only in the backend. 2 - does not expose VAPI to users of VOM Change-Id: I17b93aeaef10c0eba8612016d9034aca5628d9f7 Signed-off-by: Neale Ranns Signed-off-by: Mohsin Kazmi --- src/vpp-api/vom/lldp_global_cmds.cpp | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to 'src/vpp-api/vom/lldp_global_cmds.cpp') diff --git a/src/vpp-api/vom/lldp_global_cmds.cpp b/src/vpp-api/vom/lldp_global_cmds.cpp index 9d44a7cbca1..8237114f789 100644 --- a/src/vpp-api/vom/lldp_global_cmds.cpp +++ b/src/vpp-api/vom/lldp_global_cmds.cpp @@ -13,13 +13,14 @@ * limitations under the License. */ -#include "vom/lldp_global.hpp" +#include "vom/lldp_global_cmds.hpp" namespace VOM { -lldp_global::config_cmd::config_cmd(HW::item& item, - const std::string& system_name, - uint32_t tx_hold, - uint32_t tx_interval) +namespace lldp_global_cmds { +config_cmd::config_cmd(HW::item& item, + const std::string& system_name, + uint32_t tx_hold, + uint32_t tx_interval) : rpc_cmd(item) , m_system_name(system_name) , m_tx_hold(tx_hold) @@ -28,13 +29,13 @@ lldp_global::config_cmd::config_cmd(HW::item& item, } bool -lldp_global::config_cmd::operator==(const config_cmd& other) const +config_cmd::operator==(const config_cmd& other) const { return (m_system_name == other.m_system_name); } rc_t -lldp_global::config_cmd::issue(connection& con) +config_cmd::issue(connection& con) { msg_t req(con.ctx(), std::ref(*this)); @@ -53,7 +54,7 @@ lldp_global::config_cmd::issue(connection& con) } std::string -lldp_global::config_cmd::to_string() const +config_cmd::to_string() const { std::ostringstream s; s << "Lldp-global-config: " << m_hw_item.to_string() @@ -62,7 +63,9 @@ lldp_global::config_cmd::to_string() const return (s.str()); } -} + +}; // namespace lldp_global_cmds +}; // namespace VOM /* * fd.io coding-style-patch-verification: ON -- cgit 1.2.3-korg