Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / view / signal.hpp
index 35081cdedd006fd561a31ccb1991ea69c5300d21..82d3b51fc4a5209610ca43dbd88069da6b258131 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_VIEWS_TRACEVIEW_SIGNAL_HPP
@@ -32,6 +31,8 @@
 #include "trace.hpp"
 #include "viewitemowner.hpp"
 
+using std::shared_ptr;
+
 namespace pv {
 
 class Session;
@@ -49,8 +50,7 @@ class Signal : public Trace, public ViewItemOwner
        Q_OBJECT
 
 protected:
-       Signal(pv::Session &session,
-               std::shared_ptr<data::SignalBase> channel);
+       Signal(pv::Session &session, shared_ptr<data::SignalBase> channel);
 
 public:
        /**
@@ -58,14 +58,14 @@ public:
         */
        virtual void set_name(QString name);
 
-       virtual std::shared_ptr<pv::data::SignalData> data() const = 0;
+       virtual shared_ptr<pv::data::SignalData> data() const = 0;
 
        /**
         * Returns true if the trace is visible and enabled.
         */
        bool enabled() const;
 
-       std::shared_ptr<data::SignalBase> base() const;
+       shared_ptr<data::SignalBase> base() const;
 
        virtual void save_settings(QSettings &settings) const;
 
@@ -110,7 +110,7 @@ protected Q_SLOTS:
 protected:
        pv::Session &session_;
 
-       const std::shared_ptr<SignalScaleHandle> scale_handle_;
+       const shared_ptr<SignalScaleHandle> scale_handle_;
        const item_list items_;
 
        QComboBox *name_widget_;