]> sigrok.org Git - pulseview.git/blobdiff - pv/data/signaldata.hpp
Free unused segment memory after acquisition
[pulseview.git] / pv / data / signaldata.hpp
index 11768f69beab1e96d05fdcf02f7cd9a5f03eb2e9..f8ae97282cd8d244df0e9cf8ae9e163361873219 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
@@ -33,7 +32,7 @@ class Segment;
 class SignalData
 {
 public:
-       SignalData();
+       SignalData() = default;
        virtual ~SignalData() {}
 
 public:
@@ -41,7 +40,7 @@ public:
 
        virtual void clear() = 0;
 
-       virtual uint64_t get_max_sample_count() const = 0;
+       virtual uint64_t max_sample_count() const = 0;
 };
 
 } // namespace data