X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fproperty.cpp;h=557c2a996d7b766bfedfd046a093315f017d65ae;hp=26740ba0e98f7761d845eb0e7bbab2563ca5f2ee;hb=9a267f8dec48c9a28472c1a3bb146c624819e98b;hpb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5 diff --git a/pv/prop/property.cpp b/pv/prop/property.cpp index 26740ba0..557c2a99 100644 --- a/pv/prop/property.cpp +++ b/pv/prop/property.cpp @@ -14,19 +14,19 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#include "property.h" +#include "property.hpp" namespace pv { namespace prop { -Property::Property(QString name, Getter getter, Setter setter) : +Property::Property(QString name, QString desc, Getter getter, Setter setter) : getter_(getter), setter_(setter), - name_(name) + name_(name), + desc_(desc) { } @@ -35,10 +35,15 @@ const QString& Property::name() const return name_; } +const QString& Property::desc() const +{ + return desc_; +} + bool Property::labeled_widget() const { return false; } -} // prop -} // pv +} // namespace prop +} // namespace pv