コード例 #1
0
ファイル: Base.cpp プロジェクト: fpoussin/ChibiOS-Gwen
TextObject Base::GetChildValue( const Gwen::String& strName )
{
	Base* pChild = FindChildByName( strName, true );
	if ( !pChild ) return "";

	return pChild->GetValue();
}