Various fixes and improvements, backported from Pro version. Code by Erik Zandvliet.
This commit is contained in:
parent
5cce37c521
commit
b28a619fc6
13 changed files with 383 additions and 550 deletions
|
@ -1,3 +1,4 @@
|
|||
#pragma once
|
||||
#include<string>
|
||||
|
||||
namespace Utils {
|
||||
|
@ -12,8 +13,8 @@ namespace Utils {
|
|||
append(std::string(input, 1));
|
||||
return *this;
|
||||
};
|
||||
void append(char * input, size_t bytes);
|
||||
void append(std::string input);
|
||||
void append(const char * input, size_t bytes);
|
||||
void append(const std::string & input);
|
||||
long long unsigned int size();
|
||||
void skip(size_t count);
|
||||
long long unsigned int get(size_t count);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue