X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fbinding%2Fbinding.hpp;h=aed8c34ca4f95c5073ea54d1cfd1d43d6376dfc9;hp=35492e30ec435e9930303f974ada51e30bee0fbd;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/pv/binding/binding.hpp b/pv/binding/binding.hpp index 35492e3..aed8c34 100644 --- a/pv/binding/binding.hpp +++ b/pv/binding/binding.hpp @@ -31,6 +31,9 @@ G_GNUC_END_IGNORE_DEPRECATIONS #include +using std::shared_ptr; +using std::vector; + class QFormLayout; class QWidget; @@ -45,7 +48,7 @@ namespace binding { class Binding { public: - const std::vector< std::shared_ptr >& properties(); + const vector< shared_ptr >& properties(); void commit(); @@ -58,7 +61,7 @@ public: static QString print_gvariant(Glib::VariantBase gvar); protected: - std::vector< std::shared_ptr > properties_; + vector< shared_ptr > properties_; }; } // binding