Package Zearch Temp Implementation
* Adds Basic form * Adds Unit Classes * Adds API Request option Signed-off-by: Indrajith K L <indrajith@indrajith.dev>
This commit is contained in:
31
backup/threadunit.pas
Normal file
31
backup/threadunit.pas
Normal file
@@ -0,0 +1,31 @@
|
||||
unit ThreadUnit;
|
||||
|
||||
{$mode ObjFPC}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Dialogs;
|
||||
|
||||
|
||||
|
||||
type
|
||||
|
||||
{ThreadClass}
|
||||
|
||||
ThreadClass = class
|
||||
public
|
||||
constructor create();
|
||||
end;
|
||||
|
||||
|
||||
implementation
|
||||
|
||||
constructor ThreadClass.create();
|
||||
begin
|
||||
ShowMessage("Hello from Another Unit");
|
||||
end;
|
||||
|
||||
|
||||
end.
|
||||
|
||||
Reference in New Issue
Block a user