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

📄 mysecurity.pas

📁 Software Requirements1. Delphi 6 SP22. Oracle 8i R33. Raize 3.0.94. ExpressQuantumGrid 4.505. Expres
💻 PAS
字号:
unit MySecurity;

interface

type
  IRole = interface
  end;

  ISecurity = interface;

  ISecurityManager = interface
    function Query(Security: ISecurity; Role: IRole): Boolean;
  end;

  ISecurity = interface
  end;

  ISecurityManagerFactory = interface
    procedure SetRole(Role: IRole);
    function GetRole: IRole;
    function GetManager: ISecurityManager;
    procedure FreeManager;
  end;

implementation

end.
 

⌨️ 快捷键说明

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