Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / data / decode / rowdata.hpp
index 820959d454bbc6c2094f129a52299046c8cba995..21543c5c1141a9e95ecbd9513d90a6145f21d8cf 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_DECODE_ROWDATA_HPP
@@ -25,6 +24,8 @@
 
 #include "annotation.hpp"
 
+using std::vector;
+
 namespace pv {
 namespace data {
 namespace decode {
@@ -32,7 +33,7 @@ namespace decode {
 class RowData
 {
 public:
-       RowData();
+       RowData() = default;
 
 public:
        uint64_t get_max_sample() const;
@@ -41,13 +42,13 @@ public:
         * Extracts sorted annotations between two period into a vector.
         */
        void get_annotation_subset(
-               std::vector<pv::data::decode::Annotation> &dest,
+               vector<pv::data::decode::Annotation> &dest,
                uint64_t start_sample, uint64_t end_sample) const;
 
        void push_annotation(const Annotation &a);
 
 private:
-       std::vector<Annotation> annotations_;
+       vector<Annotation> annotations_;
 };
 
 }