X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fproperty.hpp;h=1a7b264dfc96429e6e3688bd81614337133c0374;hp=dd6d25bad37460d4e1fe9bac6992366a42933907;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/prop/property.hpp b/pv/prop/property.hpp index dd6d25b..1a7b264 100644 --- a/pv/prop/property.hpp +++ b/pv/prop/property.hpp @@ -14,19 +14,24 @@ * 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_PROP_PROPERTY_H -#define PULSEVIEW_PV_PROP_PROPERTY_H +#ifndef PULSEVIEW_PV_PROP_PROPERTY_HPP +#define PULSEVIEW_PV_PROP_PROPERTY_HPP -#include +#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::function; + class QWidget; namespace pv { @@ -37,8 +42,8 @@ class Property : public QObject Q_OBJECT; public: - typedef std::function Getter; - typedef std::function Setter; + typedef function Getter; + typedef function Setter; protected: Property(QString name, Getter getter, Setter setter); @@ -63,4 +68,4 @@ private: } // prop } // pv -#endif // PULSEVIEW_PV_PROP_PROPERTY_H +#endif // PULSEVIEW_PV_PROP_PROPERTY_HPP