X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fint.hpp;h=fabd801324d7941c2fa7171d97f941c6cc0abb13;hp=baf7dd7e1a8007fc7f7aafca7f5eaf4e2ab8df89;hb=870ea3dbf35b182e120c5d84ab89bf9cb7691232;hpb=c6246dc56ed01d7e99aa65ab88b8c191300b1ebd diff --git a/pv/prop/int.hpp b/pv/prop/int.hpp index baf7dd7e..fabd8013 100644 --- a/pv/prop/int.hpp +++ b/pv/prop/int.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_INT_HPP @@ -27,6 +26,8 @@ #include "property.hpp" +using std::pair; + class QSpinBox; namespace pv { @@ -38,7 +39,7 @@ class Int : public Property public: Int(QString name, QString suffix, - boost::optional< std::pair > range, + boost::optional< pair > range, Getter getter, Setter setter); virtual ~Int() = default; @@ -52,13 +53,13 @@ private Q_SLOTS: private: const QString suffix_; - const boost::optional< std::pair > range_; + const boost::optional< pair > range_; Glib::VariantBase value_; QSpinBox *spin_box_; }; -} // prop -} // pv +} // namespace prop +} // namespace pv #endif // PULSEVIEW_PV_PROP_INT_HPP