Subversion Repositories HomeAutomation

Rev

Rev 1599 | Rev 1603 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1599 Rev 1602
Line 82... Line 82...
82
            line += ":" + boost::lexical_cast<std::string>(payload->GetId());
82
            line += ":" + boost::lexical_cast<std::string>(payload->GetId());
83
        }
83
        }
84
       
84
       
85
        line += " CMD=" + payload->GetCommandName() + " ";
85
        line += " CMD=" + payload->GetCommandName() + " ";
86
       
86
       
87
        Message::VariableList variables = payload->GetVariables();
87
        type::StringMap variables = payload->GetVariables();
88
       
88
       
89
        for (Message::VariableList::iterator it = variables.begin(); it != variables.end(); it++)
89
        for (type::StringMap::iterator it = variables.begin(); it != variables.end(); it++)
90
        {
90
        {
91
            line += " " + it->first + "=" + it->second;
91
            line += " " + it->first + "=" + it->second;
92
        }
92
        }
93
       
93
       
94
        line += "\n";
94
        line += "\n";