top | up | prev | next

BinaryProperty Class

Definition at line 118 of Unicode.hpp

Constructors

BinaryProperty(BinaryPropertyId id_, const std::string& shortName_, const std::string& longName_)

Member Functions

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

Member Variables

BinaryPropertyId id
std::string longName
std::string shortName

Constructor Details

BinaryProperty Constructor

soulng::unicode::BinaryProperty::BinaryProperty(BinaryPropertyId id_, const std::string& shortName_, const std::string& longName_)

Definition at line 582 of Unicode.cpp :
 582 : id(id_)shortName(shortName_)longName(longName_)
 583 {
 584 }


Declaration at line 121 of Unicode.hpp


Member Function Details

Id Member Function

BinaryPropertyId soulng::unicode::BinaryProperty::Id() const

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


LongName Member Function

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

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


ShortName Member Function

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

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


top | up | prev | next