/*! \file sffwriters.h * \brief functions to write sff data (prototypes) * * ---------------------------------------------------------------------------- * * $Id: sffwriters.h,v 1.1 2010-02-21 12:31:33 tforb Exp $ * \author Thomas Forbriger * \date 21/02/2010 * * functions to write sff data (prototypes) * * Copyright (c) 2010 by Thomas Forbriger (BFO Schiltach) * * ---- * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * ---- * * * REVISIONS and CHANGES * - 21/02/2010 V1.0 Thomas Forbriger * * ============================================================================ */ // include guard #ifndef DATWRITE_SFFWRITERS_H_VERSION #define DATWRITE_SFFWRITERS_H_VERSION \ "DATWRITE_SFFWRITERS_H V1.0 " #define DATWRITE_SFFWRITERS_H_CVSID \ "$Id: sffwriters.h,v 1.1 2010-02-21 12:31:33 tforb Exp $" #include #include namespace datwrite { namespace sff { //! function to write an SFF trace from a series reservoir void writesfftrace(std::ostream& os, const ::sff::TraceHeader& traceheader, const datwrite::util::seriesreservoir& series, const ::sff::Enormmode& normmode); } // namespace sff } // namespace datwrite #endif // DATWRITE_SFFWRITERS_H_VERSION (includeguard) /* ----- END OF sffwriters.h ----- */