Lucene++ - a full-featured, c++ search engine
API Documentation


Loading...
Searching...
No Matches
Base64.h
Go to the documentation of this file.
1
2// Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3// Distributable under the terms of either the Apache License (Version 2.0)
4// or the GNU Lesser General Public License.
6
7#ifndef BASE64_H
8#define BASE64_H
9
10#include "LuceneObject.h"
11
12namespace Lucene {
13
14class LPPAPI Base64 : public LuceneObject {
15public:
16 virtual ~Base64();
18
19protected:
20 static const String BASE64_CHARS;
21
22public:
23 static String encode(ByteArray bytes);
24 static String encode(const uint8_t* bytes, int32_t length);
25 static ByteArray decode(const String& str);
26
27protected:
28 static bool isBase64(wchar_t ch);
29};
30
31}
32
33#endif
#define LUCENE_CLASS(Name)
Definition LuceneObject.h:24
Definition Base64.h:14
static const String BASE64_CHARS
Definition Base64.h:20
static String encode(ByteArray bytes)
static String encode(const uint8_t *bytes, int32_t length)
static ByteArray decode(const String &str)
static bool isBase64(wchar_t ch)
virtual ~Base64()
Base class for all Lucene classes.
Definition LuceneObject.h:31
Definition AbstractAllTermDocs.h:12

clucene.sourceforge.net