Home
last modified time | relevance | path

Searched refs:ChatHistoryEntity (Results 1 – 10 of 10) sorted by relevance

/dports/games/freeorion/freeorion-0.4.10.2/util/
H A DSerializeMultiplayerCommon.cpp282 void ChatHistoryEntity::serialize(Archive& ar, const unsigned int version) in serialize()
296 template void ChatHistoryEntity::serialize<freeorion_bin_oarchive>(freeorion_bin_oarchive&, const u…
297 template void ChatHistoryEntity::serialize<freeorion_bin_iarchive>(freeorion_bin_iarchive&, const u…
298 template void ChatHistoryEntity::serialize<freeorion_xml_oarchive>(freeorion_xml_oarchive&, const u…
299 template void ChatHistoryEntity::serialize<freeorion_xml_iarchive>(freeorion_xml_iarchive&, const u…
H A DMultiplayerCommon.h354 struct FO_COMMON_API ChatHistoryEntity { struct
356 ChatHistoryEntity() in ChatHistoryEntity() argument
371 BOOST_CLASS_VERSION(ChatHistoryEntity, 1); argument
/dports/games/freeorion/freeorion-0.4.10.2/server/
H A DServerFramework.h25 …bool LoadChatHistory(boost::circular_buffer<ChatHistoryEntity>& chat_history); // Wraps call to Ch…
26 …bool PutChatHistoryEntity(const ChatHistoryEntity& chat_history_entity); // Wraps call to ChatProv…
H A DServerFramework.cpp218 bool PythonServer::LoadChatHistory(boost::circular_buffer<ChatHistoryEntity>& chat_history) { in LoadChatHistory()
234 ChatHistoryEntity e; in LoadChatHistory()
246 bool PythonServer::PutChatHistoryEntity(const ChatHistoryEntity& chat_history_entity) { in PutChatHistoryEntity()
H A DServerApp.h88 const boost::circular_buffer<ChatHistoryEntity>& GetChatHistory() const;
327 boost::circular_buffer<ChatHistoryEntity> m_chat_history; ///< Stored last chat messages.
H A DServerApp.cpp1037 ChatHistoryEntity chat; in PushChatMessage()
1968 const boost::circular_buffer<ChatHistoryEntity>& ServerApp::GetChatHistory() const in GetChatHistory()
H A DServerFSM.cpp564 std::vector<std::reference_wrapper<const ChatHistoryEntity>> chat_history; in EstablishPlayer()
/dports/games/freeorion/freeorion-0.4.10.2/network/
H A DMessage.h31 struct ChatHistoryEntity;
338 …e ChatHistoryMessage(const std::vector<std::reference_wrapper<const ChatHistoryEntity>>& chat_hist…
384 FO_COMMON_API void ExtractChatHistoryMessage(const Message& msg, std::vector<ChatHistoryEntity>& ch…
H A DMessage.cpp636 Message ChatHistoryMessage(const std::vector<std::reference_wrapper<const ChatHistoryEntity>>& chat… in ChatHistoryMessage()
774 void ExtractChatHistoryMessage(const Message& msg, std::vector<ChatHistoryEntity>& chat_history) { in ExtractChatHistoryMessage()
783 ChatHistoryEntity elem; in ExtractChatHistoryMessage()
/dports/games/freeorion/freeorion-0.4.10.2/client/human/
H A DHumanClientFSM.cpp585 std::vector<ChatHistoryEntity> chat_history; in react()