mirror of
https://github.com/mrfluffy-dev/Delphi-Projects.git
synced 2026-01-17 05:40:33 +00:00
20 lines
232 B
ObjectPascal
20 lines
232 B
ObjectPascal
unit UnitFormSwap_u;
|
|
|
|
interface
|
|
uses
|
|
System.sysutils, Winapi.Messages;
|
|
|
|
type
|
|
FormSwap = class(TObject);
|
|
public
|
|
//function swapBtoL : string;
|
|
|
|
implementation
|
|
|
|
procedure FormSwap.swapBtoL();
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|