data template
| 622 | |
| 623 | // data template |
| 624 | DataTemplate::DataTemplate(const std::string &templateText) |
| 625 | { |
| 626 | // Parse the template |
| 627 | impl::TemplateParser(templateText, m_tree).parse(); |
| 628 | } |
| 629 | |
| 630 | std::string DataTemplate::getvalue() |
| 631 | { |
nothing calls this directly
no test coverage detected