top
|
up
|
prev
|
next
Script Class
Definition at line
456
of
Unicode.hpp
Constructors
Script
(
ScriptId
id_,
const
std::string& shortName_,
const
std::string& longName_)
Member Functions
ScriptId
Id
()
const
const
std::string&
LongName
()
const
const
std::string&
ShortName
()
const
Member Variables
ScriptId
id
std::string
longName
std::string
shortName
Constructor Details
Script Constructor
soulng::unicode::Script::Script(
ScriptId
id_,
const
std::string& shortName_,
const
std::string& longName_)
Definition at line
1257
of
Unicode.cpp
:
1257
:
id
(
id_
)
,
shortName
(
shortName_
)
,
longName
(
longName_
)
1258
{
1259
}
Declaration at line
459
of
Unicode.hpp
Member Function Details
Id Member Function
ScriptId
soulng::unicode::Script::Id()
const
Definition at line
460
of
Unicode.hpp
:
460
{
return
id
;
}
LongName Member Function
const
std::string& soulng::unicode::Script::LongName()
const
Definition at line
462
of
Unicode.hpp
:
462
{
return
longName
;
}
ShortName Member Function
const
std::string& soulng::unicode::Script::ShortName()
const
Definition at line
461
of
Unicode.hpp
:
461
{
return
shortName
;
}
top
|
up
|
prev
|
next