SmartFactory_NEOL/SOURCE/Lib/base - 20260114_old/wRoot.pas
2026-09-04 14:06:10 +09:00

32 lines
565 B
ObjectPascal

unit wRoot;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TwRoot = class(TComponent)
private
{ Private declarations }
FName: string;
FOBID: string;
FwClassName: string;
protected
{ Protected declarations }
public
{ Public declarations }
published
{ Published declarations }
property Name: string read FName write FName;
property OBID: string read FOBID write FOBID;
property wClassName: string read FwClassName write FwClassName;
end;
implementation
end.