#include <string>
#include <vector>
#include <map>
#include <sstream>
#include <assert.h>
#include <iomanip>
#include <iostream>
#include "indri/indri-platform.h"
#include "lemur-compat.hpp"
Go to the source code of this file.
Compounds | |
class | XMLNode |
Functions | |
std::string | i64_to_string (INT64 value) |
Convert an INT64 to a string. | |
INT64 | string_to_i64 (const std::string &str) |
Convert a string to an INT64. | |
int | string_to_int (const std::string &str) |
Convert a string to an int. | |
std::string | base64_encode (const void *input, int length) |
int | base64_decode (void *output, int outputLength, const std::string &input) |
void | base64_decode_string (std::string &out, const std::string &in) |
|
Base64 decode a string into an output block of memory
|
|
Base64 decode a string into a new string
|
|
Base64 encode an input block of memory into a string
|
|
Convert an INT64 to a string.
|
|
Convert a string to an INT64.
|
|
Convert a string to an int.
|