summaryrefslogtreecommitdiff
path: root/comm/IOS.cc
blob: 5f509bb35e37f28e8b5068543bf1dc39dd6cf578 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 *	The Unix Channel
 *
 *	by Michel Beaudouin-Lafon
 *
 *	Copyright 1990-1994
 *	Laboratoire de Recherche en Informatique (LRI)
 *
 *	Basic I/O 
 *
 *	$Id$
 *	$CurLog$
 */

#ifdef __GNUG__
#pragma implementation "IOS.h"
#endif
#include "IOS.h"
#include "error.h"
#include "ccu/String.h"

/*?class UchIOS
The class \typ{UchIOS} (for input/output stream) is a
base class for all objects of \uch\ that can be written to or read
from, such as buffers or sockets. It declares a number of virtual
functions for reading and writing characters, integers, buffers and
strings. It also provides a number of shifting operators that can be
used as shorthand for reading and writing.
?*/

/*?
Build a input/output stream.
?*/
UchIOS :: UchIOS ()
{
}


/*?nodoc?*/
UchIOS :: ~UchIOS ()
{
}

#ifdef DOC
/*?nextdoc?*/
void
UchIOS :: WriteLong (lword l)
{
}

/*?nextdoc?*/
void
UchIOS :: WriteShort (sword s)
{
}

/*?nextdoc?*/
void
UchIOS :: WriteByte (byte b)
{
}

/*?nextdoc?*/
void
UchIOS :: WriteChar (char c)
{
}

/*?nextdoc?*/
void
UchIOS :: WriteString (const char* s)
{
}

/*?
These virtual functions are used to write on a stream.
?*/
void
UchIOS :: WriteBuf (const byte* b, int n)
{
}



/*?nextdoc?*/
void
UchIOS :: ReadLong (lword& l)
{
}

/*?nextdoc?*/
void
UchIOS :: ReadShort (sword& s)
{
}

/*?nextdoc?*/
void
UchIOS :: ReadByte (byte& b)
{
}

/*?nextdoc?*/
void
UchIOS :: ReadChar (char& c)
{
}

/*?nextdoc?*/
void
UchIOS :: ReadString (char* s)
{
}

/*?nextdoc?*/
void
UchIOS :: ReadString (CcuString& s)
{
}

/*?
These virtual functions are used to write on a stream.
?*/
void
UchIOS :: ReadBuf (byte* b, int n)
{
}

#endif	/* DOC */