codetools: omit forward classes in example

git-svn-id: trunk@11024 -
This commit is contained in:
mattias 2007-04-29 09:47:53 +00:00
parent bc2699b1fb
commit ecfaa83c15

View File

@ -47,7 +47,8 @@ begin
end;
Node:=Tool.Tree.Root;
while (Node<>nil) do begin
if Node.Desc=ctnClass then begin
if (Node.Desc=ctnClass)
and ((Node.SubDesc and ctnsForwardDeclaration)=0) then begin
CurClassName:=Tool.ExtractClassName(Node,false);
writeln(CurClassName);
end;