Rev 1602 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1602 | Rev 1642 | ||
|---|---|---|---|
| Line 88... | Line 88... | ||
| 88 | void Message::SetVariable(std::string name, std::string value) |
88 | void Message::SetVariable(std::string name, std::string value) |
| 89 | { |
89 | { |
| 90 | this->variables_[name] = value; |
90 | this->variables_[name] = value; |
| 91 | } |
91 | } |
| 92 | 92 | ||
| 93 |
|
93 | common::StringMap& Message::GetVariables() |
| 94 | { |
94 | { |
| 95 | return this->variables_; |
95 | return this->variables_; |
| 96 | } |
96 | } |
| 97 | 97 | ||
| 98 | void Message::SetVariables( |
98 | void Message::SetVariables(common::StringMap variables) |
| 99 | { |
99 | { |
| 100 | this->variables_ = variables; |
100 | this->variables_ = variables; |
| 101 | } |
101 | } |
| 102 | 102 | ||
| 103 | }; // namespace can |
103 | }; // namespace can |