X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fsignaldata.hpp;h=a90204f06f23bd379abd78278bb6bcf0bbc41455;hp=ff30cf1a0eee15a33e2c9ca269f89d5e729755c9;hb=4ca06ec34ab94ce25b96b16b749b241593858cb1;hpb=e45b13b536666034c9b6fe52a9321d749dae3c02 diff --git a/pv/data/signaldata.hpp b/pv/data/signaldata.hpp index ff30cf1a..a90204f0 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,19 +24,26 @@ #include #include +#include + +using std::shared_ptr; +using std::vector; + namespace pv { namespace data { class Segment; -class SignalData +class SignalData : public QObject { + Q_OBJECT + public: - SignalData(); - virtual ~SignalData() {} + SignalData() = default; + virtual ~SignalData() = default; public: - virtual std::vector< std::shared_ptr > segments() const = 0; + virtual vector< shared_ptr > segments() const = 0; virtual void clear() = 0;