SNAP Library 6.0, Developer Reference  2020-12-09 16:24:20
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
TEncoding_ISO8859_1 Class Reference

#include <unicode.h>

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)
inlinestatic

Definition at line 445 of file unicode.h.

445 { if (0 <= c && c <= 255) return c; else return -1; }
static TStr TEncoding_ISO8859_1::GetName ( )
inlinestatic

Definition at line 443 of file unicode.h.

443 { return "ISO-8859-1"; }
static int TEncoding_ISO8859_1::ToUnicode ( int  c)
inlinestatic

Definition at line 444 of file unicode.h.

References Assert.

444 { Assert(0 <= c && c <= 255); return c; }
#define Assert(Cond)
Definition: bd.h:251

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