| View previous topic :: View next topic |
| Author |
Message |
Liviu Uba Guest
|
Posted: Mon Jan 26, 2004 12:12 pm Post subject: In Delphi 8 does <implements> keyword not function anymore? |
|
|
In Delphi 8 does <implements> keyword not function anymore?
Example:
type
IMyInterface = interface
['{5ADDDDA1-52DD-4638-9E94-D0B1B80EFE9C}']
procedure Test;
end;
TMyObject = class( TComponent, IMyInterface )
procedure Test;
end;
TMyTestUser = class( TComponent, IMyInterface )
protected
FMyObject : TMyObject;
public
---> property MyObject : TMyObject read FMyObject implements
IMyInterface; <--- compiler error !!
end;
compiler fails at marked line with error: " ; expected but "implements"
found"
This is a basic functionality and in D8 help we have also an example of it
What is to do ?
|
|
| Back to top |
|
 |
Joanna Carter (TeamB) Guest
|
Posted: Mon Jan 26, 2004 12:29 pm Post subject: Re: In Delphi 8 does <implements> keyword not function anym |
|
|
Liviu Uba wrote:
| Quote: | In Delphi 8 does <implements> keyword not function anymore?
|
Please do not multi-post, answered in objectpascal group; which is the best
place for this question
Joanna
--
Joanna Carter (TeamB)
Consultant Software Engineer
TeamBUG support for UK-BUG
TeamMM support for ModelMaker
|
|
| Back to top |
|
 |
Liviu Uba Guest
|
Posted: Mon Jan 26, 2004 1:20 pm Post subject: Re: In Delphi 8 does <implements> keyword not function anym |
|
|
I just wanted to make sure I put it in the right group
sorry for the incovenience
"Joanna Carter (TeamB)" <joannac (AT) btinternetXX (DOT) com> wrote
| Quote: | Liviu Uba wrote:
| In Delphi 8 does <implements> keyword not function anymore?
Please do not multi-post, answered in objectpascal group; which is the
best
place for this question
Joanna
--
Joanna Carter (TeamB)
Consultant Software Engineer
TeamBUG support for UK-BUG
TeamMM support for ModelMaker
|
|
|
| Back to top |
|
 |
|