Files
harbour-core/harbour
Pritpal Bedi c44d7e8bf9 2012-08-13 22:52 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/edit.prg
    + Implemented: <Class Declaration> complete with class name.
        CLASS abc .
          OR
        CREATE CLASS abc .
          =>
        CREATE CLASS abc .
           DATA   xDummy                                  INIT NIL

           METHOD new()
           METHOD create()

           ENDCLASS 

        METHOD new() CLASS abc

           RETURN Self 

        METHOD create() CLASS abc

           RETURN Self
2012-08-14 05:58:11 +00:00
..