X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fbinding%2Fbinding.hpp;h=aed8c34ca4f95c5073ea54d1cfd1d43d6376dfc9;hp=bd858bbf27626ee225f362e919d400fb13ab2404;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=7a01bd3654ed046216308fa64edfd79be7cd525f diff --git a/pv/binding/binding.hpp b/pv/binding/binding.hpp index bd858bb..aed8c34 100644 --- a/pv/binding/binding.hpp +++ b/pv/binding/binding.hpp @@ -14,20 +14,26 @@ * 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 . */ #ifndef PULSEVIEW_PV_BINDING_BINDING_HPP #define PULSEVIEW_PV_BINDING_BINDING_HPP +#include +// Suppress warnings due to use of deprecated std::auto_ptr<> by glibmm. +G_GNUC_BEGIN_IGNORE_DEPRECATIONS #include +G_GNUC_END_IGNORE_DEPRECATIONS #include #include #include +using std::shared_ptr; +using std::vector; + class QFormLayout; class QWidget; @@ -42,7 +48,7 @@ namespace binding { class Binding { public: - const std::vector< std::shared_ptr >& properties(); + const vector< shared_ptr >& properties(); void commit(); @@ -55,7 +61,7 @@ public: static QString print_gvariant(Glib::VariantBase gvar); protected: - std::vector< std::shared_ptr > properties_; + vector< shared_ptr > properties_; }; } // binding