Implemented various TS-related library functions.

This commit is contained in:
Thulinma 2014-06-11 15:47:20 +02:00
parent 910feb0a07
commit 0cf74425f9
5 changed files with 1325 additions and 426 deletions

View file

@ -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();