/////////////////////////////////////////////////////////////////////////// Accessor for attributes.
| 81 | //////////////////////////////////////////////////////////////////////////////// |
| 82 | // Accessor for attributes. |
| 83 | void A2::attribute(const std::string& name, const std::string& value) { |
| 84 | _attributes[name] = value; |
| 85 | |
| 86 | if (name == "raw") decompose(); |
| 87 | } |
| 88 | |
| 89 | //////////////////////////////////////////////////////////////////////////////// |
| 90 | // Accessor for attributes. |
no test coverage detected