Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / Pstream / dummy / UIPread.C
blob7b676c205f81d264cf4a09a1fc1709e753b023ba
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
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"
57         "("
58             "const commsTypes,"
59             "const int fromProcNo,"
60             "DynamicList<char>&,"
61             "label&,"
62             "const int tag,"
63             "const bool,"
64             "streamFormat, versionNumber"
65         ")"
66     );
70 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
72 Foam::label Foam::UIPstream::read
74     const commsTypes commsType,
75     const int fromProcNo,
76     char* buf,
77     const std::streamsize bufSize,
78     const int tag
81     notImplemented
82     (
83         "UIPstream::read"
84         "("
85             "const commsTypes,"
86             "const int fromProcNo,"
87             "char* buf,"
88             "const label bufSize,"
89             "const int tag"
90         ")"
91      );
93      return 0;
97 // ************************************************************************* //