Line | Count | Source |
1 | #include "CssData_p.h" | |
2 | ||
3 | using namespace Wt::Render; | |
4 | ||
5 | Term DeclarationBlockImpl::value(const std::string& property) const | |
6 | 0 | { |
7 | 0 | std::map<std::string, Term >::const_iterator iter |
8 | 0 | = properties_.find(property); |
9 | 0 | return iter != properties_.end() ? iter->second : Term(); |
10 | 0 | } |