method syntax
Posted: Wed Jan 04, 2006 6:30 pm
I'm porting large OO app from Clipper Fivewin.
Is it possible to declare several methods in just one line,
like this:
At the moment, harbour compiler does not like
this (Syntax error: parse error at ...)
Thanks, Roman
Is it possible to declare several methods in just one line,
like this:
Code: Select all
CLASS T3DOBJ
DATA aVertex
DATA aFaces
METHOD New() CONSTRUCTOR
METHOD AddVertex(), Paint()
// METHOD Paint()
ENDCLASS
this (Syntax error: parse error at ...)
Thanks, Roman