]> sigrok.org Git - pulseview.git/blobdiff - pv/data/signaldata.hpp
Use the "default" keyword.
[pulseview.git] / pv / data / signaldata.hpp
index c49cb5c0401c746fa5bbb0f68e9f73023f8ce5eb..374a6f99efcfbb1f0e6ef2bd566ea7ae578e9b02 100644 (file)
  * 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_H
-#define PULSEVIEW_PV_DATA_SIGNALDATA_H
+#ifndef PULSEVIEW_PV_DATA_SIGNALDATA_HPP
+#define PULSEVIEW_PV_DATA_SIGNALDATA_HPP
 
 #include <cstdint>
 #include <memory>
 #include <vector>
 
+using std::shared_ptr;
+using std::vector;
+
 namespace pv {
 namespace data {
 
@@ -33,18 +35,18 @@ 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;
 
-       virtual uint64_t get_max_sample_count() const = 0;
+       virtual uint64_t max_sample_count() const = 0;
 };
 
 } // namespace data
 } // namespace pv
 
-#endif // PULSEVIEW_PV_DATA_SIGNALDATA_H
+#endif // PULSEVIEW_PV_DATA_SIGNALDATA_HPP