SNAP Library, Developer Reference  2012-10-02 12:56:23
SNAP, a general purpose network analysis and graph mining library
 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 436 of file unicode.h.


Member Function Documentation

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

Definition at line 441 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 439 of file unicode.h.

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

Definition at line 440 of file unicode.h.

References Assert.

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

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