mirror of
http://gitlab.expertsoft.com.ua/git/expertcad
synced 2026-01-12 00:45:40 +02:00
26 lines
374 B
ObjectPascal
26 lines
374 B
ObjectPascal
unit U_ObjProperties;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs;
|
|
|
|
type
|
|
TF_ObjProperties = class(TForm)
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
F_ObjProperties: TF_ObjProperties;
|
|
|
|
implementation
|
|
uses USCS_main, U_CAD;
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|