Parse RDA Adaptation Data (Message Type 18)

This commit is contained in:
Dan Paulat 2021-06-18 21:54:05 -05:00
parent 3ab4ec4b9b
commit 3ae8eb24ab
6 changed files with 1074 additions and 3 deletions

View file

@ -19,6 +19,13 @@ public:
void update_read_pointers(size_t size);
protected:
pos_type
seekoff(std::streamoff off,
std::ios_base::seekdir way,
std::ios_base::openmode which = std::ios_base::in |
std::ios_base::out) override;
private:
std::vector<char>& v_;
};