コード例 #1
0
ファイル: String.cpp プロジェクト: Kodachi75/opentxs
String::String(const String& strValue)
    : length_(0)
    , position_(0)
    , data_(nullptr)
{
    //    Initialize();
    LowLevelSetStr(strValue);
}
コード例 #2
0
ファイル: OTString.cpp プロジェクト: kazcw/Open-Transactions
void OTString::Set(const OTString & strBuf)
{
    if (this == &strBuf) // Already the same string.
        return;

    Release();

    LowLevelSetStr(strBuf);
}
コード例 #3
0
ファイル: OTString.cpp プロジェクト: kazcw/Open-Transactions
OTString::OTString(const OTString & strValue) : m_lLength(0), m_lPosition(0), m_strBuffer(NULL)
{
//	Initialize();
    LowLevelSetStr(strValue);
}
コード例 #4
0
void OTString::Set(const OTString & strBuf) 
{ 
	Release();
	
	LowLevelSetStr(strBuf);
}
コード例 #5
0
ファイル: OTString.cpp プロジェクト: germc/Open-Transactions
OTString::OTString(const OTString & strValue)
{
	Initialize();
	LowLevelSetStr(strValue);
}