RVNGBinaryData.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* librevenge
3  * Version: MPL 2.0 / LGPLv2.1+
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * Major Contributor(s):
10  * Copyright (C) 2007 Fridrich Strba (fridrich.strba@bluewin.ch)
11  *
12  * For minor contributions see the git repository.
13  *
14  * Alternatively, the contents of this file may be used under the terms
15  * of the GNU Lesser General Public License Version 2.1 or later
16  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
17  * applicable instead of those above.
18  */
19 
20 #ifndef RVNGBINARYDATA_H
21 #define RVNGBINARYDATA_H
22 
23 #include "librevenge-api.h"
24 
26 
27 #include "RVNGString.h"
28 
29 namespace librevenge
30 {
31 
32 struct RVNGBinaryDataImpl;
33 
37 {
38 public:
41  RVNGBinaryData(const unsigned char *buffer, const unsigned long bufferSize);
42  explicit RVNGBinaryData(const RVNGString &base64);
43  explicit RVNGBinaryData(const char *base64);
44  ~RVNGBinaryData();
45 
46  void append(const RVNGBinaryData &data);
47  void append(const unsigned char *buffer, const unsigned long bufferSize);
48  void append(const unsigned char c);
49  void appendBase64Data(const RVNGString &base64);
50  void appendBase64Data(const char *base64);
51 
54  void clear();
55 
60  unsigned long size() const;
61 
66  bool empty() const;
67 
75  const unsigned char *getDataBuffer() const;
76 
81  const RVNGString getBase64Data() const;
82 
93  RVNGInputStream *getDataStream() const;
94 
99  RVNGBinaryData &operator=(const RVNGBinaryData &);
100 
101 private:
103 };
104 
105 }
106 
107 #endif
108 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
RVNGString.h
librevenge-api.h
librevenge-stream.h
librevenge::RVNGMemoryInputStream
Definition: RVNGMemoryStream.h:29
librevenge::RVNGBinaryData::getDataBuffer
const unsigned char * getDataBuffer() const
Get the data buffer.
Definition: RVNGBinaryData.cpp:224
m_buf
std::vector< unsigned char > m_buf
Definition: RVNGBinaryData.cpp:48
librevenge::RVNGBinaryData::~RVNGBinaryData
~RVNGBinaryData()
Definition: RVNGBinaryData.cpp:103
m_stream
boost::scoped_ptr< RVNGMemoryInputStream > m_stream
Definition: RVNGBinaryData.cpp:49
librevenge::RVNGBinaryData::appendBase64Data
void appendBase64Data(const RVNGString &base64)
Definition: RVNGBinaryData.cpp:159
librevenge.h
librevenge::RVNGBinaryDataImpl::m_ptr
boost::shared_ptr< DataImpl > m_ptr
Definition: RVNGBinaryData.cpp:85
librevenge::RVNGBinaryData::size
unsigned long size() const
Get the size of the content in bytes.
Definition: RVNGBinaryData.cpp:209
librevenge::RVNGBinaryData::operator=
RVNGBinaryData & operator=(const RVNGBinaryData &)
Assign the content of another RVNGBinaryData object.
Definition: RVNGBinaryData.cpp:218
librevenge::RVNGBinaryData
A representation of arbitrary binary data.
Definition: RVNGBinaryData.h:37
librevenge::RVNGBinaryData::getBase64Data
const RVNGString getBase64Data() const
Get the content encoded as base64.
Definition: RVNGBinaryData.cpp:231
librevenge::RVNGString
UTF-8 string.
Definition: RVNGString.h:34
librevenge::RVNGBinaryData::clear
void clear()
Remove current content.
Definition: RVNGBinaryData.cpp:201
librevenge::RVNGString::size
unsigned long size() const
Return the size in bytes of the data buffer.
Definition: RVNGString.cpp:247
librevenge::RVNGBinaryData::append
void append(const RVNGBinaryData &data)
Definition: RVNGBinaryData.cpp:149
RVNGMemoryStream.h
librevenge::RVNGBinaryData::m_binaryDataImpl
RVNGBinaryDataImpl * m_binaryDataImpl
Definition: RVNGBinaryData.h:102
librevenge::RVNGBinaryData::empty
bool empty() const
Test if the content is empty.
Definition: RVNGBinaryData.cpp:213
librevenge::RVNGString::cstr
const char * cstr() const
Definition: RVNGString.cpp:174
librevenge::RVNGInputStream
Definition: RVNGStream.h:34
librevenge
Definition: RVNGBinaryData.cpp:39
librevenge::RVNGBinaryData::getDataStream
RVNGInputStream * getDataStream() const
Create a stream for the data.
Definition: RVNGBinaryData.cpp:238
librevenge::RVNGBinaryDataImpl::RVNGBinaryDataImpl
RVNGBinaryDataImpl()
Definition: RVNGBinaryData.cpp:88
librevenge::RVNGBinaryDataImpl
Definition: RVNGBinaryData.cpp:80
REVENGE_API
#define REVENGE_API
Definition: librevenge-api.h:34
librevenge::RVNGBinaryData::RVNGBinaryData
RVNGBinaryData()
Definition: RVNGBinaryData.cpp:108
librevenge::RVNGBinaryDataImpl::makeUnique
void makeUnique()
Definition: RVNGBinaryData.cpp:93

Generated for librevenge by doxygen 1.8.18