コード例 #1
0
ファイル: OdbcDiagRecEx.cpp プロジェクト: mlbrock/MlbDev
// ////////////////////////////////////////////////////////////////////////////
OdbcDiagRecEx & OdbcDiagRecEx::operator = (const OdbcDiagRecEx &other)
{
	OdbcDiagRecEx tmp_datum(other);

	swap(tmp_datum);

	return(*this);
}
コード例 #2
0
ファイル: RequestApiRv.cpp プロジェクト: neilgroves/MlbDev
//	////////////////////////////////////////////////////////////////////////////
RequestApiRv & RequestApiRv::operator = (const RequestApiRv &other)
{
	RequestApiRv tmp_datum(other);

	swap(tmp_datum);

	return(*this);
}
コード例 #3
0
ファイル: EndPointIP.cpp プロジェクト: neilgroves/MlbDev
//	////////////////////////////////////////////////////////////////////////////
EndPointIP & EndPointIP::operator = (const EndPointIP &other)
{
	EndPointIP tmp_datum(other);

	swap(tmp_datum);

	return(*this);
}
コード例 #4
0
ファイル: TimeVal.cpp プロジェクト: neilgroves/MlbDev
// ////////////////////////////////////////////////////////////////////////////
TimeVal TimeVal::GetMaximumValue()
{
	TimeVal tmp_datum(0, 0);

	return(tmp_datum.SetToMaximumValue());
}