private void checkCommentHeader()
{
str source = memberFunction.AOTgetSource();
;
// Check if the comment is included.
if (!strStartsWith(source, '//'))
{
// Report the error.
sysBPCheck.addError(10000, 1, 1, "Missing header comment");
}
}
this.checkCommentHeader();