Functions

Codecs.cpp File Reference

#include "ace/Codecs.h"
#include "ace/Log_Msg.h"
#include "ace/OS_Memory.h"
#include "ace/OS_NS_ctype.h"
Include dependency graph for Codecs.cpp:

Go to the source code of this file.

Functions

 ACE_RCSID (ace, Codecs,"$Id: Codecs.cpp 80826 2008-03-04 14:51:23Z wotte $") namespace

Function Documentation

ACE_RCSID ( ace  ,
Codecs  ,
"$Id: Codecs.cpp 80826 2008-03-04 14:51:23Z wotte $"   
)

Definition at line 6 of file Codecs.cpp.

               : Codecs.cpp 80826 2008-03-04 14:51:23Z wotte $")

namespace
{
  // Just in case ...
#undef alphabet
#undef pad
#undef max_columns

  // Symbols which form the Base64 alphabet (Defined as per RFC 2045)
  ACE_Byte const alphabet[] =
     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

  // The padding character used in the encoding
  ACE_Byte const pad = '=';

  // Number of columns per line of encoded output (Can have a maximum
  // value of 76).
  int const max_columns = 72;
}

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines