You are not logged in.
Pages: 1
Hi,
I am interested in using the PDF Engine in C++ Builder (no Delphi installed), is this possible?
I tried to build a simple project using the following files:
SQLite3Pages.pas
SynCommons.pas
SynLZ.pas
Synopse.inc
SynPDF.pas
but I get the following error many times:
[DCC Error] SynCommons.pas(1799): E1025 Unsupported language feature: 'Object'
Regards,
Robin
Offline
Well it looks like the problem is due to the use of the 'object' type in the Delphi code, which seems to have been long since deprecated. Would it be possible to modify the code to use classes instead? I would certainly be willing to help with testing in C++ if you do this.
I noticed somebody had a similar problem with Big Table (http://synopse.info/forum/viewtopic.php?id=437), so I'm not the only one looking to use Synopse code in C++.
Regards,
Robin
Offline
Sometimes, "object" can be replaced by "record".
But when you need inheritance (like with TDynArray), "record" won't work.
It is a pity that "object" is so buggy.
Even if deprecated, it should be at least working for compatibility reasons.
See http://blog.synopse.info/post/2010/08/0 … egemony%21
I do not want to use Turbo Pascal inheritance and buggy virtual methods.
But for value-objects (like record), having inheritance at hand is very handy.
Embarcadero makes choices following the C# model (their new "record" model follows the "struct" C# implementation), and forget about the strength of object pascal.
So for your problem, we may change the implementation into classes, but it could be time consuming.
And I suspect it won't be even feasible, e.g. when used within dynamic arrays or other record structures.
Offline
Pages: 1