Menu

How to skip input?

Help
Anonymous
2004-09-14
2013-04-24
  • Anonymous

    Anonymous - 2004-09-14

    How can I make pas2dox skip parts of the .pas file?

     
    • Darren Bowles

      Darren Bowles - 2004-09-28

      Maybe the following method would help you out.

      Compiler definitions are now handled in pas2dox. 

      Example :  If you have code such as

      {$ifdef INTERNAL}
      /// Here is some internal documentation
      {$else}
      /// Here is some external documentation
      {$endif}

      Documentation can then be generated for INTERNAL use, by setting the following
      in your Doxyfile

      PREDEFINED = INTERNAL

       

Log in to post a comment.