| 906 | } |
| 907 | |
| 908 | std::string |
| 909 | LayerMap::to_string_file_format () const |
| 910 | { |
| 911 | std::vector<unsigned int> layers = get_layers (); |
| 912 | std::ostringstream os; |
| 913 | for (std::vector<unsigned int>::const_iterator l = layers.begin (); l != layers.end (); ++l) { |
| 914 | os << mapping_str (*l); |
| 915 | os << "\n"; |
| 916 | } |
| 917 | return os.str (); |
| 918 | } |
| 919 | |
| 920 | void |
| 921 | LayerMap::add_expr (const std::string &expr, unsigned int l) |
no test coverage detected