⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 newservice_impl.pas

📁 MYSQL 连接控件 MYSQL 连接控件
💻 PAS
字号:
unit NewService_Impl;

{----------------------------------------------------------------------------}
{ This unit was automatically generated by the RemObjects SDK after reading  }
{ the RODL file associated with this project .                               }
{                                                                            }
{ This is where you are supposed to code the implementation of your objects. }
{----------------------------------------------------------------------------}

interface

uses
  {vcl:} Classes, SysUtils, 
  {RemObjects:} uROClientIntf, uROTypes, uROServer, uROServerIntf, uROSessions,
  {Data Abstract:} uDADataStreamer,uDABinAdapter, uDAClasses,
  {Ancestor Implementation:} DataAbstractService_Impl,
  {Used RODLs:} DataAbstract4_Intf,
  {Generated:} NewLibrary_Intf, uDAScriptingProvider, uDABusinessProcessor;

type
  { TNewService }
  TNewService = class(TDataAbstractService, INewService)
    DataStreamer: TDABinDataStreamer;
    Schema: TDASchema;
  private
  protected
    { INewService methods }
    procedure NewMethod;
  end;

implementation

{$R *.dfm}
uses
  {Generated:} NewLibrary_Invk, fServerDataModule,uDAInterfaces;

procedure Create_NewService(out anInstance : IUnknown);
begin
  anInstance := TNewService.Create(NIL);
end;

procedure TNewService.NewMethod;
begin
end;

initialization
  TROClassFactory.Create('NewService', Create_NewService, TNewService_Invoker);

finalization

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -