Delphi XE3 EnterpriseWindows 7 x64
LMD - IDE Tools 17 Dec 2012
I am trying to generate the wrapper for a unit and I am getting a number of warnings that I would like to resolve.
My unit looks like the following...
unit cBOContainer;
interface
Uses
System.Classes
, System.SysUtils
, System.Contnrs
;
type
TCols = class(TStringList)
public
function GetColsText: string;
end;
... (There is more but this is enough for you to get the gist of it.)
I switch to the LMS-Script Import page in the DE and click generate. After a second I get red boxes next to my uses clause and my classes with the following warnings...
[LMDSI Warning] cBOContainer.pas: Analize results for 'System' unit is not found.
[LMDSI Warning] cBOContainer.pas: Analize results for 'System.Classes' unit is not found.
[LMDSI Warning] cBOContainer.pas: Analize results for 'System.SysUtils' unit is not found.
[LMDSI Warning] cBOContainer.pas: Analize results for 'System.Contnrs' unit is not found.
[LMDSI Warning] cBOContainer.pas: Ancestor type: 'TStringList' is not found.
... (Again there are more of the same, but you get the idea).
I assume the TStringList is not found because the System.Classes was not found.
What is the impact of these warnings.
Thanks in advance for any help you can provide.
-Michael
Comments