gsmuset.inl
来自「拦截短消息」· INL 代码 · 共 43 行
INL
43 行
// GSMUSET.INL
//
// Copyright (c) Symbian Software Ltd. 2003-2005. All rights reserved.
//
/** @file
*/
inline TSmsDataCodingScheme::TSmsAlphabet TSmsUserDataSettings::Alphabet() const
/** Gets the Alphabet for the User Data.
@return Alphabet */
{
return iAlphabet;
}
inline void TSmsUserDataSettings::SetAlphabet(TSmsDataCodingScheme::TSmsAlphabet aAlphabet)
/** Sets the Alphabet for the User Data.
@param aAlphabet Alphabet */
{
iAlphabet=aAlphabet;
}
inline TBool TSmsUserDataSettings::TextCompressed() const
/** Tests if the message text is compressed.
@return True if the message text is compressed */
{
return iFlags&ESmsFlagCompressed;
}
inline void TSmsUserDataSettings::SetTextCompressed(TBool aCompressed)
/** Sets if the message text is compressed.
@param aCompressed True if the message text is compressed */
{
iFlags=aCompressed? iFlags|ESmsFlagCompressed: iFlags&(~ESmsFlagCompressed);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?