mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-19 22:40:36 -04:00
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:
parent
07a458367b
commit
8527a5e53f
17 changed files with 947 additions and 609 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue