Fixed up the retroshare message system.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@331 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2008-02-04 17:55:13 +00:00
parent 07a458367b
commit 8527a5e53f
17 changed files with 947 additions and 609 deletions

View file

@ -89,6 +89,8 @@ std::ostream &print(std::ostream &out, const DirInfo &info, int indentLvl)
}
#if 0
std::ostream &operator<<(std::ostream &out, const MessageInfo &info)
{
out << "MessageInfo(TODO)";
@ -96,16 +98,18 @@ std::ostream &operator<<(std::ostream &out, const MessageInfo &info)
return out;
}
std::ostream &operator<<(std::ostream &out, const ChannelInfo &info)
std::ostream &operator<<(std::ostream &out, const ChatInfo &info)
{
out << "ChannelInfo(TODO)";
out << "ChatInfo(TODO)";
out << std::endl;
return out;
}
std::ostream &operator<<(std::ostream &out, const ChatInfo &info)
#endif
std::ostream &operator<<(std::ostream &out, const ChannelInfo &info)
{
out << "ChatInfo(TODO)";
out << "ChannelInfo(TODO)";
out << std::endl;
return out;
}