Componentes.Terceros.UserCo.../internal/2.20/1/Packages/Connectors/UCMySQLDACConn/UCMySQLDACConnReg.pas
2007-07-11 13:47:42 +00:00

18 lines
217 B
ObjectPascal

unit UCMySQLDACReg;
interface
uses Classes;
procedure Register;
implementation
uses UCMySQLDACConn;
procedure Register;
begin
RegisterComponents('UC Connectors', [TUCMySQLDACConn]);
end;
end.