Implemented various TS-related library functions.
This commit is contained in:
parent
910feb0a07
commit
0cf74425f9
5 changed files with 1325 additions and 426 deletions
|
@ -8,6 +8,10 @@ namespace Utils{
|
|||
append(input);
|
||||
return *this;
|
||||
};
|
||||
bitstream& operator<< (char input){
|
||||
append(std::string(input, 1));
|
||||
return *this;
|
||||
};
|
||||
void append (char* input, size_t bytes);
|
||||
void append (std::string input);
|
||||
long long unsigned int size();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue