Interface IInclude

    • Method Detail

      • getIncludeName

        String getIncludeName()
        Returns the name that of the included file. For example, for the statement #include <stdio.h>, this returns "stdio.h".
      • isStandard

        boolean isStandard()
        Returns whether the included was search on "standard places" like /usr/include first . An include is standard if it starts with '<'. For example, #include <stdio.h> returns true and #include "foobar.h" returns false.
      • getFullFileName

        String getFullFileName()
      • isResolved

        boolean isResolved()
        Returns:
        whether this include directive was resolved and followed.