I am sorry Victor, I thought it ment the same thing. What does it
mean? if you don't mind my question.
On another front, here is the latest incarnation of my inserters and
extractors:
friend std:

stream& operator<<( std:

stream&, const jme::Money& );
friend std::istream& operator>>( std::istream&, jme::Money& );
std:

stream&
operator<<( std:

stream& os, const jme::Money& obj ) {
std::cout << "Check this out" << std::endl;
return os << obj.getAmount();
//return os;
}
std::istream&
operator>>( std::istream& is, jme::Money& obj ) {
float tmp;
is >> tmp;
std::cout << LINE << " " << FILE << " " << tmp << std::endl;
obj.setAmount(tmp);
return is;
}
I would expect that the statement
jme::Money money("12.21");
std::cout << " Value is: " << money << std::endl;
would display 12.21, but in instead it displays 0x4c1094 !?
I am really going *loco* with this part of the program. It just does
not make sence.
Can you help?