view modules/base64/doc/mainpage.cpp @ 522:adc2dccc3ee6

Js: resurrection
author David Demelier <markand@malikania.fr>
date Wed, 01 Jun 2016 17:06:50 +0200
parents 00f1789a49fa
children f48bb09bccc7
line wrap: on
line source

/**
 * \mainpage
 *
 * Welcome to the %base64 library.
 *
 * ## Introduction
 *
 * This code allows you to encode and decode %base64 data in C++ as easy as possible.
 *
 * ## Installation
 *
 * Just copy the file base64.hpp and add it to your project.
 *
 * ## Overview
 *
 * ````
 * #include "base64.hpp"
 * 
 * int main(void)
 * {
 *	base64::encode("Hello World!");
 * 
 *	return 0;
 * }
 * ````
 */