本文整理汇总了C++中MCommand::expand方法的典型用法代码示例。如果您正苦于以下问题:C++ MCommand::expand方法的具体用法?C++ MCommand::expand怎么用?C++ MCommand::expand使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MCommand
的用法示例。
在下文中一共展示了MCommand::expand方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: expand
void MComponent::expand( WString& c, const MCommand& cmd )
{
if( cmd.size() > 0 ) {
cmd.expand( c, _target, _config->nilTool(), _mask, NULL, _mode );
c.concat( "\n" );
_project->insertBlanks( c );
}
}
示例2: expand
void MProject::expand( ContFile& pmak, const MCommand& cmd, const char* head )
{
if( cmd.size() > 0 ) {
pmak.printf( "%s\n", head );
MCommand c;
cmd.expand( c, &_filename, _config->nilTool(), "*", NULL, 0 );
insertBlanks( c );
pmak.puts( c );
pmak.puts( "\n" );
}
}
示例3: expand
int MAction::expand( WString& command, WFileName* target, const WString& mask, WVList* states, SwMode mode )
{
MCommand s;
for( int j=0; j<_commands.count(); j++ ) {
MCommand* x = (MCommand*)_commands[j];
const WString& xm = x->mask();
if( xm.size() == 0 || xm.match( mask ) ) {
if( j > 0 ) s.concat( '\n' );
s.concat( *x );
}
}
return s.expand( command, target, _tool, mask, states, mode );
}