mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: UIPread: missing constructor
This commit is contained in:
@ -53,15 +53,42 @@ Foam::UIPstream::UIPstream
|
|||||||
{
|
{
|
||||||
notImplemented
|
notImplemented
|
||||||
(
|
(
|
||||||
"UIPstream::UIPstream"
|
"UIPstream::UIPstream\n"
|
||||||
"("
|
"(\n"
|
||||||
"const commsTypes,"
|
"const commsTypes,\n"
|
||||||
"const int fromProcNo,"
|
"const int,\n"
|
||||||
"DynamicList<char>&,"
|
"DynamicList<char>&,\n"
|
||||||
"label&,"
|
"label&,\n"
|
||||||
"const int tag,"
|
"const int,\n"
|
||||||
"const bool,"
|
"const bool,\n"
|
||||||
"streamFormat, versionNumber"
|
"streamFormat,\n"
|
||||||
|
"versionNumber\n"
|
||||||
|
")"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Foam::UIPstream::UIPstream
|
||||||
|
(
|
||||||
|
const int fromProcNo,
|
||||||
|
PstreamBuffers& buffers
|
||||||
|
)
|
||||||
|
:
|
||||||
|
UPstream(buffers.commsType_),
|
||||||
|
Istream(buffers.format_, buffers.version_),
|
||||||
|
fromProcNo_(fromProcNo),
|
||||||
|
externalBuf_(buffers.recvBuf_[fromProcNo]),
|
||||||
|
externalBufPosition_(buffers.recvBufPos_[fromProcNo]),
|
||||||
|
tag_(buffers.tag_),
|
||||||
|
clearAtEnd_(true),
|
||||||
|
messageSize_(0)
|
||||||
|
{
|
||||||
|
notImplemented
|
||||||
|
(
|
||||||
|
"UIPstream::UIPstream\n"
|
||||||
|
"(\n"
|
||||||
|
"const int,\n"
|
||||||
|
"PstreamBuffers&\n"
|
||||||
")"
|
")"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user