#include "emptyformaction.h" namespace newsboat { EmptyFormAction::EmptyFormAction(View& v, const std::string& formstr, ConfigContainer* cfg) : FormAction(v, formstr, cfg) { } std::string EmptyFormAction::id() const { return "empty"; } std::string EmptyFormAction::title() { return "Empty FormAction"; } void EmptyFormAction::init() { } void EmptyFormAction::prepare() { } std::vector EmptyFormAction::get_keymap_hint() const { static const std::vector hints; return hints; } bool EmptyFormAction::process_operation(Operation /*op*/, const std::vector& /*args*/, BindingType /*bindingType*/) { return false; } } // namespace newsboat