vojtech@29: /** vojtech@29: * parameter-lister (Rust implementation) vojtech@29: * Copyright © 2016 Vojtěch Král vojtech@29: * vojtech@29: * This program is free software: you can redistribute it and/or modify vojtech@29: * it under the terms of the GNU General Public License as published by vojtech@29: * the Free Software Foundation, either version 3 of the License, or vojtech@29: * (at your option) any later version. vojtech@29: * vojtech@29: * This program is distributed in the hope that it will be useful, vojtech@29: * but WITHOUT ANY WARRANTY; without even the implied warranty of vojtech@29: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the vojtech@29: * GNU General Public License for more details. vojtech@29: * vojtech@29: * You should have received a copy of the GNU General Public License vojtech@29: * along with this program. If not, see . vojtech@29: */ vojtech@29: pub use std::io::Write; vojtech@29: vojtech@29: pub trait OutputModule { vojtech@29: fn process(&self, output: &mut Write, parameters: Vec) -> Result<(), String>; vojtech@29: }