X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fpopups%2Fdeviceoptions.hpp;h=21f88e90947f038a01f675a7483584ccc90ff776;hp=e358932a9f9bec74e88d2f756f6021452a78e4d4;hb=bf84211be02b096646cf28cf9dc7480029e4f439;hpb=7a01bd3654ed046216308fa64edfd79be7cd525f diff --git a/pv/popups/deviceoptions.hpp b/pv/popups/deviceoptions.hpp index e358932a..21f88e90 100644 --- a/pv/popups/deviceoptions.hpp +++ b/pv/popups/deviceoptions.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_POPUPS_DEVICEOPTIONS_HPP @@ -27,6 +26,8 @@ #include #include +using std::shared_ptr; + namespace sigrok { class Device; } @@ -39,13 +40,12 @@ class DeviceOptions : public pv::widgets::Popup Q_OBJECT public: - DeviceOptions(std::shared_ptr device, - QWidget *parent); + DeviceOptions(shared_ptr device, QWidget *parent); pv::binding::Device& binding(); private: - std::shared_ptr device_; + shared_ptr device_; QVBoxLayout layout_;