X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fproperty.hpp;h=1a7b264dfc96429e6e3688bd81614337133c0374;hp=77eb9a6a73ec61f36f828775e22fbd3cf1b501d1;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=8ada6ef1319fa11fd594a34853967c1f9688913b diff --git a/pv/prop/property.hpp b/pv/prop/property.hpp index 77eb9a6..1a7b264 100644 --- a/pv/prop/property.hpp +++ b/pv/prop/property.hpp @@ -14,8 +14,7 @@ * 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_HPP @@ -31,6 +30,8 @@ G_GNUC_END_IGNORE_DEPRECATIONS #include #include +using std::function; + class QWidget; namespace pv { @@ -41,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);