コード例 #1
0
 //Clone---------------------------------------------------------------------
 GraphicsPath* GraphicsPath::Clone(void) const
 {
     GraphicsPath* ret = new GraphicsPath( mFillMode );
     ret->copyFrom( this );
     return ret;
 }