| 829 | } |
| 830 | |
| 831 | void Template::addPassPoint(const PassPoint& point, int pos) |
| 832 | { |
| 833 | Q_ASSERT(!is_georeferenced); |
| 834 | passpoints.insert(passpoints.begin() + pos, point); |
| 835 | } |
| 836 | void Template::deletePassPoint(int pos) |
| 837 | { |
| 838 | passpoints.erase(passpoints.begin() + pos); |
no test coverage detected