VOM: Additions to allow uses to UT applications that use VOM
[vpp.git] / src / vpp-api / vom / ip_unnumbered.hpp
index e6f5ef4..b736919 100644 (file)
@@ -21,7 +21,6 @@
 #include "vom/interface.hpp"
 #include "vom/object_base.hpp"
 #include "vom/om.hpp"
-#include "vom/rpc_cmd.hpp"
 #include "vom/singular_db.hpp"
 
 namespace VOM {
@@ -69,91 +68,13 @@ public:
   /**
    * The key type for ip_unnumbereds
    */
-  typedef interface::key_type key_t;
+  typedef interface::key_t key_t;
 
   /**
    * Find an singular instance in the DB for the interface passed
    */
   static std::shared_ptr<ip_unnumbered> find(const interface& i);
 
-  /**
-   * A command class that configures the IP unnumbered
-   */
-  class config_cmd
-    : public rpc_cmd<HW::item<bool>, rc_t, vapi::Sw_interface_set_unnumbered>
-  {
-  public:
-    /**
-     * Constructor
-     */
-    config_cmd(HW::item<bool>& item,
-               const handle_t& itf,
-               const handle_t& l3_itf);
-
-    /**
-     * Issue the command to VPP/HW
-     */
-    rc_t issue(connection& con);
-    /**
-     * convert to string format for debug purposes
-     */
-    std::string to_string() const;
-
-    /**
-     * Comparison operator - only used for UT
-     */
-    bool operator==(const config_cmd& i) const;
-
-  private:
-    /**
-     * Reference to the interface for which the address is required
-     */
-    const handle_t& m_itf;
-    /**
-     * Reference to the interface which has an address
-     */
-    const handle_t& m_l3_itf;
-  };
-
-  /**
-   * A cmd class that Unconfigs L3 Config from an interface
-   */
-  class unconfig_cmd
-    : public rpc_cmd<HW::item<bool>, rc_t, vapi::Sw_interface_set_unnumbered>
-  {
-  public:
-    /**
-     * Constructor
-     */
-    unconfig_cmd(HW::item<bool>& item,
-                 const handle_t& itf,
-                 const handle_t& l3_itf);
-
-    /**
-     * Issue the command to VPP/HW
-     */
-    rc_t issue(connection& con);
-    /**
-     * convert to string format for debug purposes
-     */
-    std::string to_string() const;
-
-    /**
-     * Comparison operator - only used for UT
-     */
-    bool operator==(const unconfig_cmd& i) const;
-
-  private:
-    /**
-     * Reference to the interface for which the address is required
-     */
-    const handle_t& m_itf;
-    /**
-     * Reference to the interface which has an address
-     */
-    const handle_t& m_l3_itf;
-  };
-
 private:
   /**
    * Class definition for listeners to OM events