BUG: UIPread: missing constructor
[OpenFOAM-2.0.x.git] / src / Pstream / dummy / UIPread.C
blobfc3b4466e2a32bad3e4e4c1c4b74e39f78bbf488
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Description
25     Read from UIPstream
27 \*---------------------------------------------------------------------------*/
29 #include "UIPstream.H"
31 // * * * * * * * * * * * * * * * * Constructor * * * * * * * * * * * * * * * //
33 Foam::UIPstream::UIPstream
35     const commsTypes commsType,
36     const int fromProcNo,
37     DynamicList<char>& externalBuf,
38     label& externalBufPosition,
39     const int tag,
40     const bool clearAtEnd,
41     streamFormat format,
42     versionNumber version
45     UPstream(commsType),
46     Istream(format, version),
47     fromProcNo_(fromProcNo),
48     externalBuf_(externalBuf),
49     externalBufPosition_(externalBufPosition),
50     tag_(tag),
51     clearAtEnd_(clearAtEnd),
52     messageSize_(0)
54     notImplemented
55     (
56         "UIPstream::UIPstream\n"
57         "(\n"
58             "const commsTypes,\n"
59             "const int,\n"
60             "DynamicList<char>&,\n"
61             "label&,\n"
62             "const int,\n"
63             "const bool,\n"
64             "streamFormat,\n"
65             "versionNumber\n"
66         ")"
67     );
71 Foam::UIPstream::UIPstream
73     const int fromProcNo,
74     PstreamBuffers& buffers
77     UPstream(buffers.commsType_),
78     Istream(buffers.format_, buffers.version_),
79     fromProcNo_(fromProcNo),
80     externalBuf_(buffers.recvBuf_[fromProcNo]),
81     externalBufPosition_(buffers.recvBufPos_[fromProcNo]),
82     tag_(buffers.tag_),
83     clearAtEnd_(true),
84     messageSize_(0)
86     notImplemented
87     (
88         "UIPstream::UIPstream\n"
89         "(\n"
90             "const int,\n"
91             "PstreamBuffers&\n"
92         ")"
93     );
97 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
99 Foam::label Foam::UIPstream::read
101     const commsTypes commsType,
102     const int fromProcNo,
103     char* buf,
104     const std::streamsize bufSize,
105     const int tag
108     notImplemented
109     (
110         "UIPstream::read"
111         "("
112             "const commsTypes,"
113             "const int fromProcNo,"
114             "char* buf,"
115             "const label bufSize,"
116             "const int tag"
117         ")"
118      );
120      return 0;
124 // ************************************************************************* //