Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #include <OpenFOAM/error.H>
00033
00034 #include "uint.H"
00035 #include <OpenFOAM/IOstreams.H>
00036
00037 #include <sstream>
00038
00039
00040
00041 Foam::word Foam::name(const unsigned int val)
00042 {
00043 std::ostringstream buf;
00044 buf << val;
00045 return buf.str();
00046 }
00047
00048
00049
00050 Foam::Istream& Foam::operator>>(Istream& is, unsigned int& i)
00051 {
00052 token t(is);
00053
00054 if (!t.good())
00055 {
00056 is.setBad();
00057 return is;
00058 }
00059
00060 if (t.isLabel())
00061 {
00062 i = static_cast<unsigned int>(t.labelToken());
00063 }
00064 else
00065 {
00066 is.setBad();
00067 FatalIOErrorIn("operator>>(Istream&, unsigned int&)", is)
00068 << "wrong token type - expected unsigned int found " << t.info()
00069 << exit(FatalIOError);
00070
00071 return is;
00072 }
00073
00074
00075 is.check("Istream& operator>>(Istream&, unsigned int&)");
00076
00077 return is;
00078 }
00079
00080
00081 unsigned int Foam::readUint(Istream& is)
00082 {
00083 unsigned int val;
00084 is >> val;
00085
00086 return val;
00087 }
00088
00089
00090 Foam::Ostream& Foam::operator<<(Ostream& os, const unsigned int i)
00091 {
00092 os.write(label(i));
00093 os.check("Ostream& operator<<(Ostream&, const unsigned int)");
00094 return os;
00095 }
00096
00097
00098