diff --git a/_byte_buffer_8cpp_source.html b/_byte_buffer_8cpp_source.html
index 1a467446..5cceede4 100644
--- a/_byte_buffer_8cpp_source.html
+++ b/_byte_buffer_8cpp_source.html
@@ -81,7 +81,7 @@ $(function() {
4 : content(NULL), contentSize(v_size), padding(v_padding),
-
+
@@ -91,18 +91,18 @@ $(function() {
14 : content(NULL), contentSize(v_size), padding(v_padding),
-
+
- 21 memcpy(this->
content, v_content, v_size);
+ 21 ::memcpy(this->
content, v_content, v_size);
25 : content(NULL), contentSize(0), padding(0),
-
+
28 if (v_parent == NULL)
throw BufferException(
"Cannot make subBuffer for NULL buffer!");
@@ -115,10 +115,10 @@ $(function() {
36 BYTE *bContent = v_parent->
getContentAt(v_offset, copySize);
37 if (bContent == NULL)
throw BufferException(
"Cannot make Buffer for NULL content!");
-
+
-
- 42 memcpy(this->
content, bContent, copySize);
+
+ 42 ::memcpy(this->
content, bContent, copySize);
@@ -129,7 +129,7 @@ $(function() {
51 throw BufferException(
"Cannot allocate buffer of size: 0x" + QString::number(allocSize, 16));
-
+ 53 ::memset(
content, 0, allocSize);
@@ -143,30 +143,29 @@ $(function() {
- 67 if (newContent == NULL)
return false;
+ 67 if (!newContent)
return false;
69 BYTE *oldContent = this->
content;
71 bufsize_t copySize = newSize < oldSize ? newSize : oldSize;
- 73 memcpy(newContent, oldContent, copySize);
+ 73 ::memcpy(newContent, oldContent, copySize);
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
@@ -174,14 +173,14 @@ $(function() {
virtual bufsize_t getContentSize()=0
virtual BYTE * getContentAt(offset_t offset, bufsize_t size, bool allowExceptions=false)
+
-
+
ByteBuffer(bufsize_t v_size, bufsize_t padding=DEFAULT_PADDING)
BYTE * allocContent(bufsize_t v_size, bufsize_t padding)
virtual bool resize(bufsize_t newSize)
-