/*! \file libdatwritexx/README * \brief A library to write different seismic data formats through the same interface * * ---------------------------------------------------------------------------- * * $Id: README,v 1.6 2010-03-24 07:42:32 tforb Exp $ * \author Thomas Forbriger * \date 11/04/2006 * * A library to write different seismic data formats through the same interface * * This file contains: * - documentation of namespace datwrite * - mainpage text * * Copyright (c) 2006 by Thomas Forbriger (BFO Schiltach) * * REVISIONS and CHANGES * - 11/04/2006 V1.0 Thomas Forbriger * * ============================================================================ */ /*! \brief Root namespace of library This namespace contains the generic interface to the library. It contains several subnamespaces with interfaces to format specific data reading modules. */ namespace datwrite { } // namespace datwrite /*======================================================================*/ /*! \mainpage \author Thomas Forbriger \since April 2006 \date February 2010 2006 \version V1.0 $Id: README,v 1.6 2010-03-24 07:42:32 tforb Exp $ Contents of this page: - \ref sec_concept - \ref sec_howto Other libraries that are required to compile libdatwritexx: libaff, libtfxx, libgsexx, libtime, libsffxx, libdatreadxx The library libdatwritexx is a supplement to libdatreadxx. Most of the data structures and formats are defined in libdatreadxx. libdatwritexx supplements these with file writing modules. \section sec_concept Concept of the library The library defines a generic interface for modules that write seismic data. The data must be available in SFF structures defined by libsffxx. Comparable with libdatreadxx a generic module will be provided that supports writing of any data format supported by the library. \section sec_howto HOWTO write data of any supported format An example will be provided as soon as the code is written ;-) */ // ----- END OF README -----