fipa_acl  1.4
message_format.cpp
Go to the documentation of this file.
1 #include "message_format.h"
2 #include <boost/assign/list_of.hpp>
3 
4 namespace fipa {
5 namespace acl {
6 
8  : mUseCodeTables(false)
9  , mUpdateCodeTables(true)
10  // FIPA defines version 1.0
11  , mVersion("1.0")
12  , mResolverDepth(1)
13 {
14 }
15 
16 std::map<MessageField::Type, std::string> MessageField::MessageFieldTxt = boost::assign::map_list_of
17  (MessageField::SENDER, "sender")
18  (MessageField::RECEIVER, "receiver")
19  (MessageField::CONTENT, "content")
20  (MessageField::REPLY_WITH, "reply-with")
21  (MessageField::REPLY_BY, "reply-by")
22  (MessageField::IN_REPLY_TO, "in-reply-to")
23  (MessageField::REPLY_TO, "reply-to")
24  (MessageField::LANGUAGE, "language")
25  (MessageField::ENCODING, "encoding")
26  (MessageField::ONTOLOGY, "ontology")
27  (MessageField::PROTOCOL, "protocol")
28  (MessageField::CONVERSATION_ID, "conversation-id");
29 
30 }//end of acl namespace
31 }// end of fipa namespace
32 
std::map< MessageField::Type, std::string > MessageFieldTxt
Foundation of Physical Intelligent Agents.
Definition: conversation.cpp:6