Consistenty use auto-generated namespace comments.
[pulseview.git] / pv / prop / double.hpp
index dc119bdb36e40c421421869e3e9610cc700157cb..863648d834b89dc6713578933184e735fd79045f 100644 (file)
@@ -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 <http://www.gnu.org/licenses/>.
  */
 
 #ifndef PULSEVIEW_PV_PROP_DOUBLE_HPP
@@ -27,6 +26,8 @@
 
 #include "property.hpp"
 
+using std::pair;
+
 class QDoubleSpinBox;
 
 namespace pv {
@@ -38,7 +39,7 @@ class Double : public Property
 
 public:
        Double(QString name, int decimals, QString suffix,
-               boost::optional< std::pair<double, double> > range,
+               boost::optional< pair<double, double> > range,
                boost::optional<double> step,
                Getter getter,
                Setter setter);
@@ -55,13 +56,13 @@ private Q_SLOTS:
 private:
        const int decimals_;
        const QString suffix_;
-       const boost::optional< std::pair<double, double> > range_;
+       const boost::optional< pair<double, double> > range_;
        const boost::optional<double> step_;
 
        QDoubleSpinBox *spin_box_;
 };
 
-} // prop
-} // pv
+}  // namespace prop
+}  // namespace pv
 
 #endif // PULSEVIEW_PV_PROP_DOUBLE_HPP