summaryrefslogtreecommitdiffstats
path: root/kvoctrain/kvoctrain/kvt-core/kvt-xml/koxml_config.h
blob: 2f0daecbd79e0c9b1bf9c3107301420982d1451e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//#define KOXML_USE_STL

/*
  -----------------------------------------------------------------------

  -----------------------------------------------------------------------
*/

#ifndef KOXML_USE_STL

# include <qtextstream.h>
# define KOXML_ISTREAM QTextStream
# define KOXML_OSTREAM QTextStream

# include <qstring.h>
# define KOXML_STRING  QString

// Unicode character
# define KOXML_CHAR QChar

# define KOXML_STRING_REMOVE( string_var, pos, count) string_var.remove (pos, count)
# define KOXML_STRING_INSERT( string_var, pos, str)   string_var.insert(pos, str)

#else

# include <iostream>
using namespace std;
# define KOXML_ISTREAM istream
# define KOXML_OSTREAM ostream

# define KOXML_CHAR char    // evtl. wchar

////////////////////////////////////////////////////////
//evtl. an MFC o.ä. anpassen
#ifdef __MFC_STRING_BENUTZT__

#else

# include <string>
# define KOXML_STRING  string // evtl. wstring

# define KOXML_STRING_REMOVE( string_var, pos, count) string_var.erase (pos, count)
# define KOXML_STRING_INSERT( string_var, pos, str)   string_var.insert(pos, (string)str)

#endif

#endif