Switch to unified view
a/src/utils/transcode.cpp | b/src/utils/transcode.cpp | ||
---|---|---|---|
1 | #ifndef lint |
1 | #ifndef lint |
2 | static char rcsid[] = "@(#$Id: transcode.cpp,v 1.3 2005-02-04 14:21:18 dockes Exp $ (C) 2004 J.F.Dockes"; |
2 | static char rcsid[] = "@(#$Id: transcode.cpp,v 1.4 2005-11-24 07:16:16 dockes Exp $ (C) 2004 J.F.Dockes"; |
3 | #endif |
3 | #endif |
4 | 4 | ||
5 | #ifndef TEST_TRANSCODE |
5 | #ifndef TEST_TRANSCODE |
6 | 6 | ||
7 | #include <errno.h> |
7 | #include <errno.h> |
8 | 8 | ||
9 | #include <string> |
9 | #include <string> |
10 | #include <iostream> |
10 | #include <iostream> |
11 | #ifndef NO_NAMESPACES |
||
11 | using std::string; |
12 | using std::string; |
13 | #endif /* NO_NAMESPACES */ |
||
12 | 14 | ||
13 | #include <iconv.h> |
15 | #include <iconv.h> |
14 | 16 | ||
15 | #include "transcode.h" |
17 | #include "transcode.h" |
16 | 18 |