SNAP Library 2.0, User Reference  2013-05-13 16:33:57
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
TEncoding_ISO8859_1 Class Reference

#include <unicode.h>

List of all members.

Static Public Member Functions

static TStr GetName ()
static int ToUnicode (int c)
static int FromUnicode (int c)

Detailed Description

Definition at line 440 of file unicode.h.


Member Function Documentation

static int TEncoding_ISO8859_1::FromUnicode ( int  c) [inline, static]

Definition at line 445 of file unicode.h.

{ if (0 <= c && c <= 255) return c; else return -1; }
static TStr TEncoding_ISO8859_1::GetName ( ) [inline, static]

Definition at line 443 of file unicode.h.

{ return "ISO-8859-1"; }
static int TEncoding_ISO8859_1::ToUnicode ( int  c) [inline, static]

Definition at line 444 of file unicode.h.

{ Assert(0 <= c && c <= 255); return c; }

The documentation for this class was generated from the following file: