#ifndef __OPER_INTERFACE_H_ #define __OPER_INTERFACE_H_ #include #include class interface_dump : public VOM::dump_cmd { public: /** * Default Constructor - dump everything */ interface_dump(); /* * Constructor to dump one interface only */ interface_dump(std::string interface_name); /** * Issue the command to VPP/HW */ VOM::rc_t issue(VOM::connection& con); /** * convert to string format for debug purposes */ std::string to_string() const; private: std::string m_name; //interface name }; #endif //__OPER_INTERFACE_H_