Formatting
This commit is contained in:
parent
e53b01515e
commit
ad58fd9b05
1 changed files with 3 additions and 2 deletions
|
@ -206,17 +206,18 @@ public:
|
||||||
//- Assignment from UList
|
//- Assignment from UList
|
||||||
inline void operator=(const UList<T>&);
|
inline void operator=(const UList<T>&);
|
||||||
|
|
||||||
|
|
||||||
// IOstream operators
|
// IOstream operators
|
||||||
|
|
||||||
#ifndef SWIG
|
#ifndef SWIG
|
||||||
// Write DynamicList to Ostream.
|
// Write DynamicList to Ostream
|
||||||
friend Ostream& operator<< <T, SizeInc, SizeMult, SizeDiv>
|
friend Ostream& operator<< <T, SizeInc, SizeMult, SizeDiv>
|
||||||
(
|
(
|
||||||
Ostream&,
|
Ostream&,
|
||||||
const DynamicList<T, SizeInc, SizeMult, SizeDiv>&
|
const DynamicList<T, SizeInc, SizeMult, SizeDiv>&
|
||||||
);
|
);
|
||||||
|
|
||||||
//- Read from Istream, discarding contents of existing DynamicList.
|
//- Read from Istream, discarding contents of existing DynamicList
|
||||||
friend Istream& operator>> <T, SizeInc, SizeMult, SizeDiv>
|
friend Istream& operator>> <T, SizeInc, SizeMult, SizeDiv>
|
||||||
(
|
(
|
||||||
Istream&,
|
Istream&,
|
||||||
|
|
Reference in a new issue