STYLE: make memorybuf naming more consistent with std iostreams

This commit is contained in:
Mark Olesen
2017-11-04 14:30:14 +01:00
parent ebd922a32e
commit dd838766be
4 changed files with 10 additions and 10 deletions

View File

@ -65,7 +65,7 @@ class OListStreamAllocator
//- A streambuf adapter to output to a List
class listbuf
:
public memorybuf::output
public memorybuf::out
{
friend OListStreamAllocator;

View File

@ -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;

View File

@ -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;

View File

@ -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
{