TurboPack/DOSCommand

[dcc32 Warning] DosCommand.pas(1): W1025 Unsupported language feature: 'class constructor'

SSHAnakSolo opened this issue · 4 comments

when i open the : DOSCommandDR on Delphi XE7 and compile it,, it give me Warning
[dcc32 Warning] DosCommand.pas(1): W1025 Unsupported language feature: 'class constructor'

so,, how can i install the DosCommand Component on delphi xe7..??
thx

This is only a warning since the C++ linker doesn't support smart class constructors.

This means that under Delphi the class constructor is only called if the class is used. Under C++ the constructor is always called.

So, simply ignore the warning.

Did you enable warnings as errors?

'Project -> Options - > Delphi Compiler -> Hints and Warnings' and change the value of Output Warnings from 'as errors' to 'False'.