diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-07-11 15:50:46 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-07-11 15:50:46 +0000 |
| commit | 14c7f45cdae826f88dc539c8c38dd95caf305731 (patch) | |
| tree | 832da054b7cfb2dc6fd63339af736625f31d21aa /utils/zenutils/libraries/pelib-0.9/pelib/buffer/InputBuffer.cpp | |
| parent | 7c84ede3781c27db73403bd6302f320c76a58c8c (diff) | |
| download | rockbox-14c7f45cdae826f88dc539c8c38dd95caf305731.zip rockbox-14c7f45cdae826f88dc539c8c38dd95caf305731.tar.gz rockbox-14c7f45cdae826f88dc539c8c38dd95caf305731.tar.bz2 rockbox-14c7f45cdae826f88dc539c8c38dd95caf305731.tar.xz | |
Add zook's ZenUtils to SVN
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18010 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/zenutils/libraries/pelib-0.9/pelib/buffer/InputBuffer.cpp')
| -rwxr-xr-x | utils/zenutils/libraries/pelib-0.9/pelib/buffer/InputBuffer.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/utils/zenutils/libraries/pelib-0.9/pelib/buffer/InputBuffer.cpp b/utils/zenutils/libraries/pelib-0.9/pelib/buffer/InputBuffer.cpp new file mode 100755 index 0000000..ae2584e --- /dev/null +++ b/utils/zenutils/libraries/pelib-0.9/pelib/buffer/InputBuffer.cpp @@ -0,0 +1,58 @@ +/*
+* InputBuffer.cpp - Part of the PeLib library.
+*
+* Copyright (c) 2004 - 2005 Sebastian Porst (webmaster@the-interweb.com)
+* All rights reserved.
+*
+* This software is licensed under the zlib/libpng License.
+* For more details see http://www.opensource.org/licenses/zlib-license.php
+* or the license information file (license.htm) in the root directory
+* of PeLib.
+*/
+
+#include "InputBuffer.h"
+
+namespace PeLib
+{
+ unsigned long InputBuffer::get()
+ {
+ return ulIndex;
+ }
+
+ InputBuffer::InputBuffer(std::vector<unsigned char>& vBuffer) : m_vBuffer(vBuffer), ulIndex(0)
+ {
+ }
+
+ const unsigned char* InputBuffer::data() const
+ {
+ return &m_vBuffer[0];
+ }
+
+ unsigned long InputBuffer::size()
+ {
+ return static_cast<unsigned long>(m_vBuffer.size());
+ }
+
+ void InputBuffer::read(char* lpBuffer, unsigned long ulSize)
+ {
+ std::copy(&m_vBuffer[ulIndex], &m_vBuffer[ulIndex + ulSize], lpBuffer);
+ ulIndex += ulSize;
+ }
+
+ void InputBuffer::reset()
+ {
+ m_vBuffer.clear();
+ }
+
+ void InputBuffer::set(unsigned long ulIndex)
+ {
+ this->ulIndex = ulIndex;
+ }
+
+ void InputBuffer::setBuffer(std::vector<unsigned char>& vBuffer)
+ {
+ m_vBuffer = vBuffer;
+ ulIndex = 0;
+ }
+}
+
|