mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-07 21:45:58 +02:00
29 lines
612 B
Plaintext
29 lines
612 B
Plaintext
object DemoClass: TDemoClass
|
|
OnCreate = DataModuleCreate
|
|
OldCreateOrder = False
|
|
DispatchOptions = [jdoSearchRegistry, jdoSearchOwner, jdoJSONRPC1, jdoJSONRPC2, jdoNotifications]
|
|
APIPath = 'API'
|
|
RouterPath = 'Router'
|
|
CreateSession = False
|
|
Height = 313
|
|
HorizontalOffset = 548
|
|
VerticalOffset = 230
|
|
Width = 359
|
|
PPI = 96
|
|
object Add: TJSONRPCHandler
|
|
OnExecute = AddExecute
|
|
Options = []
|
|
ParamDefs = <
|
|
item
|
|
Name = 'A'
|
|
DataType = jtNumber
|
|
end
|
|
item
|
|
Name = 'B'
|
|
DataType = jtNumber
|
|
end>
|
|
left = 56
|
|
top = 32
|
|
end
|
|
end
|