top | up | prev | next

GeneralCategory Class

Definition at line 307 of Unicode.hpp

Constructors

GeneralCategory(GeneralCategoryId id_, const std::string& shortName_, const std::string& longName_)

Member Functions

GeneralCategoryId Id() const
const std::string& LongName() const
const std::string& ShortName() const

Member Variables

GeneralCategoryId id
std::string longName
std::string shortName

Constructor Details

GeneralCategory Constructor

soulng::unicode::GeneralCategory::GeneralCategory(GeneralCategoryId id_, const std::string& shortName_, const std::string& longName_)

Definition at line 1079 of Unicode.cpp :
1079 : id(id_)shortName(shortName_)longName(longName_)
1080 {
1081 }


Declaration at line 310 of Unicode.hpp


Member Function Details

Id Member Function

GeneralCategoryId soulng::unicode::GeneralCategory::Id() const

Definition at line 311 of Unicode.hpp :
 311 { return id; }


LongName Member Function

const std::string& soulng::unicode::GeneralCategory::LongName() const

Definition at line 313 of Unicode.hpp :
 313 { return longName; }


ShortName Member Function

const std::string& soulng::unicode::GeneralCategory::ShortName() const

Definition at line 312 of Unicode.hpp :
 312 { return shortName; }


top | up | prev | next