Make annotation export customizable
[pulseview.git] / pv / data / decode / row.cpp
index 5b1b25ee8ec56043f736b2d82938d9d1ea1ef0fd..8195f3e2d00f023c0cdfb91f4b0464c8065d5eab 100644 (file)
@@ -61,6 +61,13 @@ const QString Row::title() const
        return QString();
 }
 
+const QString Row::class_name() const
+{
+       if (row_ && row_->desc)
+               return QString::fromUtf8(row_->desc);
+       return QString();
+}
+
 int Row::index() const
 {
        return index_;