X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fsignaldata.hpp;h=374a6f99efcfbb1f0e6ef2bd566ea7ae578e9b02;hp=4b356100e3642a966526e200db7497166a280355;hb=db1aabc15dc8680673b943c2dd0f38a83c32a1d9;hpb=c6246dc56ed01d7e99aa65ab88b8c191300b1ebd diff --git a/pv/data/signaldata.hpp b/pv/data/signaldata.hpp index 4b356100..374a6f99 100644 --- a/pv/data/signaldata.hpp +++ b/pv/data/signaldata.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_DATA_SIGNALDATA_HPP @@ -25,6 +24,9 @@ #include #include +using std::shared_ptr; +using std::vector; + namespace pv { namespace data { @@ -34,10 +36,10 @@ class SignalData { public: SignalData() = default; - virtual ~SignalData() {} + virtual ~SignalData() = default; public: - virtual std::vector< std::shared_ptr > segments() const = 0; + virtual vector< shared_ptr > segments() const = 0; virtual void clear() = 0;