mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Removed support for cint.
This commit is contained in:
@ -148,9 +148,7 @@ public:
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
// Global predefined null output stream
|
||||
|
||||
#ifndef __CINT__
|
||||
extern OFstream Snull;
|
||||
#endif
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -193,9 +193,7 @@ public:
|
||||
|
||||
|
||||
//- Ostream operator
|
||||
#ifndef __MAKECINT__
|
||||
friend Ostream& operator<<(Ostream& os, const versionNumber& vn);
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
@ -421,7 +419,7 @@ public:
|
||||
}
|
||||
|
||||
//- Return compression of given compression name
|
||||
static compressionType compressionEnum(const word&);
|
||||
static compressionType compressionEnum(const word&);
|
||||
|
||||
//- Return the stream compression
|
||||
compressionType compression() const
|
||||
@ -554,7 +552,6 @@ Ostream& operator<<(Ostream& os, const IOstream::versionNumber& vn);
|
||||
// --------------------------------------------------------------------
|
||||
// ------ Manipulators (not taking arguments)
|
||||
// --------------------------------------------------------------------
|
||||
#ifndef __CINT__
|
||||
|
||||
typedef IOstream& (*IOstreamManip)(IOstream&);
|
||||
|
||||
@ -595,8 +592,6 @@ inline IOstream& scientific(IOstream& io)
|
||||
return io;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -52,19 +52,14 @@ class InfoProxy
|
||||
{
|
||||
public:
|
||||
|
||||
#ifndef __MAKECINT__
|
||||
const T& t_;
|
||||
#endif
|
||||
|
||||
InfoProxy(const T& t)
|
||||
:
|
||||
t_(t)
|
||||
{}
|
||||
|
||||
friend Ostream& operator<<
|
||||
#ifndef __CINT__
|
||||
<T>
|
||||
#endif
|
||||
|
||||
friend Ostream& operator<< <T>
|
||||
(Ostream&, const InfoProxy<T>&);
|
||||
};
|
||||
|
||||
|
||||
@ -152,7 +152,6 @@ public:
|
||||
// --------------------------------------------------------------------
|
||||
// ------ Manipulators (not taking arguments)
|
||||
// --------------------------------------------------------------------
|
||||
#ifndef __CINT__
|
||||
|
||||
typedef Istream& (*IstreamManip)(Istream&);
|
||||
|
||||
@ -169,8 +168,6 @@ inline Istream& operator>>(Istream& is, IOstreamManip f)
|
||||
return is;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -199,7 +199,6 @@ public:
|
||||
// --------------------------------------------------------------------
|
||||
// ------ Manipulators (not taking arguments)
|
||||
// --------------------------------------------------------------------
|
||||
#ifndef __CINT__
|
||||
|
||||
typedef Ostream& (*OstreamManip)(Ostream&);
|
||||
|
||||
@ -254,8 +253,6 @@ inline Ostream& endl(Ostream& os)
|
||||
return os;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
// Useful aliases for tab and newline characters
|
||||
static const char tab = '\t';
|
||||
|
||||
@ -151,9 +151,7 @@ public:
|
||||
|
||||
// Ostream Operator
|
||||
|
||||
#ifndef __CINT__
|
||||
friend Ostream& operator<<(Ostream&, const commsStruct&);
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
||||
@ -58,9 +58,7 @@ class ISstream
|
||||
// Private data
|
||||
|
||||
fileName name_;
|
||||
#ifndef __CINT__
|
||||
istream& is_;
|
||||
#endif
|
||||
|
||||
|
||||
// Private member functions
|
||||
|
||||
@ -58,9 +58,7 @@ class OSstream
|
||||
// Private data
|
||||
|
||||
fileName name_;
|
||||
#ifndef __CINT__
|
||||
ostream& os_;
|
||||
#endif
|
||||
|
||||
|
||||
// Private Member Functions
|
||||
|
||||
@ -206,9 +206,7 @@ public:
|
||||
|
||||
// IOstream Operators
|
||||
|
||||
#ifndef __MAKECINT__
|
||||
friend Ostream& operator<<(Ostream&, const compound&);
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user