ARTS  2.3.1285(git:92a29ea9-dirty)
m_xml.cc
Go to the documentation of this file.
1 /* Copyright (C) 2013 Oliver Lemke <olemke@core-dump.info>
2 
3  This program is free software; you can redistribute it and/or modify it
4  under the terms of the GNU General Public License as published by the
5  Free Software Foundation; either version 2, or (at your option) any
6  later version.
7 
8  This program is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  GNU General Public License for more details.
12 
13  You should have received a copy of the GNU General Public License
14  along with this program; if not, write to the Free Software
15  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16  USA. */
17 
27 #include "m_xml.h"
28 
29 /* Workspace method: Doxygen documentation will be auto-generated */
30 void output_file_formatSetAscii( // WS Output:
31  String& file_format,
32  const Verbosity&) {
33  file_format = "ascii";
34 }
35 
36 /* Workspace method: Doxygen documentation will be auto-generated */
38  String& file_format,
39  const Verbosity&) {
40  file_format = "zascii";
41 }
42 
43 /* Workspace method: Doxygen documentation will be auto-generated */
44 void output_file_formatSetBinary( // WS Output:
45  String& file_format,
46  const Verbosity&) {
47  file_format = "binary";
48 }
void output_file_formatSetZippedAscii(String &file_format, const Verbosity &)
WORKSPACE METHOD: output_file_formatSetZippedAscii.
Definition: m_xml.cc:37
void output_file_formatSetBinary(String &file_format, const Verbosity &)
WORKSPACE METHOD: output_file_formatSetBinary.
Definition: m_xml.cc:44
Workspace methods and template functions for supergeneric XML IO.
void output_file_formatSetAscii(String &file_format, const Verbosity &)
WORKSPACE METHOD: output_file_formatSetAscii.
Definition: m_xml.cc:30