forked from rofl0r/TntUnicode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTntDBClientActns_Design.pas
36 lines (26 loc) · 1.07 KB
/
TntDBClientActns_Design.pas
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
{*****************************************************************************}
{ }
{ Tnt Delphi Unicode Controls }
{ http://www.tntware.com/delphicontrols/unicode/ }
{ Version: 2.3.0 }
{ }
{ Copyright (c) 2002-2007, Troy Wolbrink ([email protected]) }
{ }
{*****************************************************************************}
unit TntDBClientActns_Design;
{$INCLUDE ..\Source\TntCompilers.inc}
interface
uses
Classes;
procedure Register;
implementation
uses
TntDBClientActns;
procedure Register;
begin
// DBClientActns
RegisterClass(TTntClientDataSetApply);
RegisterClass(TTntClientDataSetRevert);
RegisterClass(TTntClientDataSetUndo);
end;
end.