本文整理汇总了C++中AllocExclusive函数的典型用法代码示例。如果您正苦于以下问题:C++ AllocExclusive函数的具体用法?C++ AllocExclusive怎么用?C++ AllocExclusive使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了AllocExclusive函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AllocExclusive
// adds a cubic Bezier curve from the current point, using two control points and an end point
void wxGraphicsPath::AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y )
{
AllocExclusive();
GetPathData()->AddCurveToPoint(cx1,cy1,cx2,cy2,x,y);
}
示例2: AllocExclusive
void wxFont::DoSetNativeFontInfo( const wxNativeFontInfo& info )
{
AllocExclusive();
M_FONTDATA->SetNativeFontInfo( info );
}
示例3: AllocExclusive
void wxPen::SetWidth( int width )
{
AllocExclusive();
M_PENDATA->m_width = width;
}
示例4: AllocExclusive
void wxBitmap::SetWidth(int width)
{
AllocExclusive();
wxFAIL_MSG( "SetWidth not implemented" );
}
示例5: AllocExclusive
void wxBitmap::SetHeight(int height)
{
AllocExclusive();
wxFAIL_MSG( _T("SetHeight not implemented") );
}