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


 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Base64.h
Go to the documentation of this file.
1 // 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 
12 namespace Lucene {
13 
14 class Base64 : public LuceneObject {
15 public:
16  virtual ~Base64();
18 
19 protected:
20  static const String BASE64_CHARS;
21 
22 public:
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 
27 protected:
28  static bool isBase64(wchar_t ch);
29 };
30 
31 }
32 
33 #endif
virtual ~Base64()
static bool isBase64(wchar_t ch)
Definition: Base64.h:14
Base class for all Lucene classes.
Definition: LuceneObject.h:31
#define LUCENE_CLASS(Name)
Definition: LuceneObject.h:24
Definition: AbstractAllTermDocs.h:12
static ByteArray decode(const String &str)
static const String BASE64_CHARS
Definition: Base64.h:17
static String encode(ByteArray bytes)

clucene.sourceforge.net