COVISE Core
coBlankConv.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8#ifndef CO_BLANK_CONV_H
9#define CO_BLANK_CONV_H
10
11#include <util/coTypes.h>
12
13// 16.09.99
14
19namespace covise
20{
21
23{
24
25public:
26 // Allocate a new char [] of same size and replace all blanks by char(255)
27 // convert empty string to single char(1) to prevent bugs
28 static char *all(const char *inString);
29
30 // dito, but convert only blanks inside '...' apostrophies
31 static char *escaped(const char *inString);
32};
33}
34#endif
#define APIEXPORT
Definition: coExport.h:275
list of all chemical elements
Definition: coConfig.h:27
Definition: coBlankConv.h:23