-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathuntEasyfrxPDF417CodeRTTI.pas
More file actions
59 lines (49 loc) · 1.47 KB
/
untEasyfrxPDF417CodeRTTI.pas
File metadata and controls
59 lines (49 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{------------------------------------------------------------------------------
// HhfComponents For Delphi 7
// 一轩软研第三方开发包
// @Copyright 2013 hehf
// ------------------------------------
//
// 本开发包是公司内部使用部分源码来自WWW,作为开发工具使用任何
// 人不得外泄,否则后果自负.
//
// 使用权限以及相关解释请联系何海锋
//
// 让知识转化成财富财富,让鄙视见鬼去
//
// 网站地址:http://www.YiXuan-SoftWare.com
// 电子邮件:hehaifeng1984@126.com
// YiXuan-SoftWare@hotmail.com
// QQ :383530895
// MSN :YiXuan-SoftWare@hotmail.com
//
------------------------------------------------------------------------------}
unit untEasyfrxPDF417CodeRTTI;
interface
{$I frx.inc}
implementation
uses
Windows, Classes, SysUtils, Forms, fs_iinterpreter, untEasyfrxQRCode, frxClassRTTI
{$IFDEF Delphi6}
, Variants
{$ENDIF};
type
TEasyPDF417Functions = class(TfsRTTIModule)
public
constructor Create(AScript: TfsScript); override;
end;
{ TFunctions }
constructor TEasyPDF417Functions.Create(AScript: TfsScript);
begin
inherited Create(AScript);
with AScript do
begin
AddClass(TEasyfrxQRBarcodeView, 'TfrxView');
end;
end;
initialization
fsRTTIModules.Add(TEasyPDF417Functions);
finalization
if fsRTTIModules <> nil then
fsRTTIModules.Remove(TEasyPDF417Functions);
end.