Disable all code related to libXp
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / utility / stringstream.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 // $XConsortium: stringstream.C /main/5 1996/08/21 15:55:17 drk $
24
25 #include "utility/c_stringstream.h"
26 #include "utility/c_charbuf.h"
27 #include <string.h>
28
29 istringstream::istringstream() : istream(0)
30 {
31    char str[BUF_INITSZ];
32    sbuf = new charbuf(str, strlen(str), 1);
33 }
34
35 istringstream::istringstream(char* str) :
36    //ios(new charbuf(str, strlen(str))), istream(0)
37    istream(0)
38 {
39    sbuf = new charbuf(str, strlen(str), 1);
40 }
41
42 istringstream::~istringstream()
43 {
44 }
45
46 ostringstream::ostringstream() : ostream(0)
47 {
48    char str[BUF_INITSZ];
49    sbuf = new charbuf(str, strlen(str));
50 }
51
52 ostringstream::ostringstream(char* str, int) :
53    //ios(new charbuf(str, size)), ostream(0)
54    ostream(0)
55 {
56    sbuf = new charbuf(str, strlen(str));
57 }
58
59 ostringstream::~ostringstream()
60 {
61 }
62
63 string ostringstream::str()
64 {
65    string x = sbuf -> get_buf();
66 // x[pcount()] = 0;
67    return x;
68 }
69
70 stringstream::stringstream() : istringstream(), ostringstream()
71 {
72 }
73
74 stringstream::stringstream(char* str) : istringstream(str), ostringstream(str)
75 {
76    sbuf = new charbuf(str, strlen(str));
77 }