00001 /*************************************************************************** 00002 fileio_opts.h - description 00003 ------------------- 00004 begin : Mon Nov 13 2006 00005 copyright : (C) 2001 by Thies Jochimsen 00006 email : jochimse@cns.mpg.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef FILEIO_OPTS_H 00019 #define FILEIO_OPTS_H 00020 00021 #include <odinpara/jdxblock.h> 00022 #include <odinpara/jdxtypes.h> 00023 #include <odinpara/jdxnumbers.h> 00024 00033 struct FileReadOpts : JcampDxBlock { 00034 00035 FileReadOpts(); 00036 00037 JDXenum format; 00038 JDXstring jdx; 00039 JDXenum cplx; 00040 JDXint skip; 00041 JDXstring dset; 00042 JDXstring filter; 00043 JDXstring dialect; 00044 JDXbool fmap; 00045 }; 00046 00048 00052 struct FileWriteOpts : JcampDxBlock { 00053 00054 FileWriteOpts(); 00055 00056 JDXenum format; 00057 JDXbool append; 00058 JDXstring wprot; 00059 JDXbool split; 00060 JDXstring dialect; 00061 JDXenum datatype; 00062 }; 00063 00064 00065 00071 #endif
1.5.6