mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: make memorybuf naming more consistent with std iostreams
This commit is contained in:
@ -65,7 +65,7 @@ class OListStreamAllocator
|
||||
//- A streambuf adapter to output to a List
|
||||
class listbuf
|
||||
:
|
||||
public memorybuf::output
|
||||
public memorybuf::out
|
||||
{
|
||||
friend OListStreamAllocator;
|
||||
|
||||
|
||||
@ -82,7 +82,7 @@ class UIListStreamAllocator
|
||||
//- A streambuf class for input from UList or equivalent
|
||||
class ulistbuf
|
||||
:
|
||||
public memorybuf::input
|
||||
public memorybuf::in
|
||||
{
|
||||
friend UIListStreamAllocator;
|
||||
|
||||
|
||||
@ -100,7 +100,7 @@ class UOListAllocator
|
||||
//- A streambuf adapter for output to UList or equivalent
|
||||
class ulistbuf
|
||||
:
|
||||
public memorybuf::output
|
||||
public memorybuf::out
|
||||
{
|
||||
friend UOListAllocator;
|
||||
|
||||
|
||||
@ -129,17 +129,17 @@ protected:
|
||||
public:
|
||||
|
||||
// Forward declarations
|
||||
class input;
|
||||
class output;
|
||||
class in;
|
||||
class out;
|
||||
};
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class memorybuf::input Declaration
|
||||
Class memorybuf::in Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
//- An output streambuf for memory access
|
||||
class memorybuf::input
|
||||
//- An input streambuf for memory access
|
||||
class memorybuf::in
|
||||
:
|
||||
public memorybuf
|
||||
{
|
||||
@ -175,11 +175,11 @@ protected:
|
||||
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class memorybuf::output Declaration
|
||||
Class memorybuf::out Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
//- An output streambuf for memory access
|
||||
class memorybuf::output
|
||||
class memorybuf::out
|
||||
:
|
||||
public memorybuf
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user