Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / view / marginwidget.hpp
index b785877299cd49ff508354cb04f6d337d6725a4b..ebe8cfc08b780ce06f3d4697d1ef277f6d2100c7 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_MARGINWIDGET_HPP
@@ -27,6 +26,8 @@
 
 #include "viewwidget.hpp"
 
+using std::shared_ptr;
+
 namespace pv {
 namespace views {
 namespace TraceView {
@@ -52,14 +53,13 @@ protected:
         * Indicates the event an a view item has been clicked.
         * @param item the view item that has been clicked.
         */
-       virtual void item_clicked(
-               const std::shared_ptr<ViewItem> &item);
+       virtual void item_clicked(const shared_ptr<ViewItem> &item);
 
        /**
         * Shows the popup of a the specified @c ViewItem .
         * @param item The item to show the popup for.
         */
-       void show_popup(const std::shared_ptr<ViewItem> &item);
+       void show_popup(const shared_ptr<ViewItem> &item);
 
 protected:
        virtual void contextMenuEvent(QContextMenuEvent *event);