Menu

Cannot make class description to appear

Help
2004-11-17
2012-07-18
  • Nobody/Anonymous

    Another problem: I'm trying to enter a description to a class, and I've tried:

    a)

    {*----------------------
    description

    -----------------------}
    type TMyClass= class(TObject)
    ....
    end;

    b)

    type TMyClass= class(TObject) /// description
    ....
    end;

    c)

    type TMyClass= class(TObject)
    ....
    end; /// description

    None of the three options work with version 0.10b or 0.9b, I allways get:

    TMyClass #No TAG found in source code#

    I can get descriptions for every private value and private and public methods in the class, but i cannot find description for the class itsself.

    Can anybody help me?

     
    • TridenT

      TridenT - 2004-11-17

      You must enter your description AFTER the "type" keyword.

      example of valid wriiting:
      type
      {*----------------------
      description
      -----------------------}
      TMyClass= class(TObject)
      ....
      end;

      b)

      type
      /// description
      TMyClass= class(TObject)
      ....
      end;

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.