]> sigrok.org Git - pulseview.git/blobdiff - pv/data/signaldata.hpp
Use the "default" keyword.
[pulseview.git] / pv / data / signaldata.hpp
index ff30cf1a0eee15a33e2c9ca269f89d5e729755c9..374a6f99efcfbb1f0e6ef2bd566ea7ae578e9b02 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_DATA_SIGNALDATA_HPP
@@ -25,6 +24,9 @@
 #include <memory>
 #include <vector>
 
+using std::shared_ptr;
+using std::vector;
+
 namespace pv {
 namespace data {
 
@@ -33,11 +35,11 @@ class Segment;
 class SignalData
 {
 public:
-       SignalData();
-       virtual ~SignalData() {}
+       SignalData() = default;
+       virtual ~SignalData() = default;
 
 public:
-       virtual std::vector< std::shared_ptr<Segment> > segments() const = 0;
+       virtual vector< shared_ptr<Segment> > segments() const = 0;
 
        virtual void clear() = 0;