blob: cb1f84a2cf171d25866bdfb2da44a783361e0d1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <cstdlib>
#include <cstdint>
#include <vector>
using std::vector;
class SampleBlock {
public:
SampleBlock(vector<int16_t>::iterator begin, size_t size);
vector<int16_t>::iterator begin;
vector<int16_t>::iterator end;
size_t size;
};
|