methoddecl.mtl

来自「realview22.rar」· MTL 代码 · 共 17 行

MTL
17
字号
$if method-is-virtual$virtual $endif$$\$
$if method-is-static$static $endif$$\$
$if method-is-inline$inline $endif$$\$
$if method-has-return-type$$method-return-type$ $endif$$\$
$method-name$($method-param-list$)$\$
$if method-is-const$ const$endif$$\$
$if method-is-pure$ = 0;$\$
$elseif method-is-inline$$if method-needs-stub-return$
	{	// Fill in code here ...
		$method-stub-return-type$ x$method-stub-return-initializer$;
		return x;
	}$\$
$else$$\$
	{ /* Fill in code here ... */ }$\$
$endif$$\$
$else$;$\$
$endif$$\$

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?