m_svgAnalyzer->set_transform(a, b, c, d, e, f);
}
-void SvgppContext::set(svgpp::tag::attribute::r a, const double v) {
- (void)a;
- (void)v;
+void SvgppContext::set(svgpp::tag::attribute::r, const double) {
+ throw std::runtime_error{"the 'r' attribute is not yet implemented"};
}
void SvgppContext::set(svgpp::tag::attribute::rx, const double v) {
m_svgAnalyzer->set_ry(v);
}
-void SvgppContext::set(svgpp::tag::attribute::x1 a, const double v) {
- (void)a;
- (void)v;
+void SvgppContext::set(svgpp::tag::attribute::x1, const double) {
+ throw std::runtime_error{"the 'x1' attribute is not yet implemented"};
}
-void SvgppContext::set(svgpp::tag::attribute::y1 a, const double v) {
- (void)a;
- (void)v;
+void SvgppContext::set(svgpp::tag::attribute::y1, const double) {
+ throw std::runtime_error{"the 'y1' attribute is not yet implemented"};
}
-void SvgppContext::set(svgpp::tag::attribute::x2 a, const double v) {
- (void)a;
- (void)v;
+void SvgppContext::set(svgpp::tag::attribute::x2, const double) {
+ throw std::runtime_error{"the 'x2' attribute is not yet implemented"};
}
-void SvgppContext::set(svgpp::tag::attribute::y2 a, const double v) {
- (void)a;
- (void)v;
+void SvgppContext::set(svgpp::tag::attribute::y2, const double) {
+ throw std::runtime_error{"the 'y2' attribute is not yet implemented"};
}
void SvgppContext::set(svgpp::tag::attribute::x, const double v) {