home *** CD-ROM | disk | FTP | other *** search
- {$I DFS.INC}
-
- {$IFDEF DFS_CPPB_3_UP}
- // C++Builder 3 requires this if you use run-time packages.
- {$ObjExportAll On}
- // Installing to a package that is not in the same directory as the source
- // will not grab the DCR file in C++B 3. IDE bug, IMHO.
- {$R ELV_Reg.dcr}
- {$ENDIF}
-
- unit ELV_Reg;
-
- interface
-
- procedure Register;
-
- implementation
-
- uses
- Classes, DsgnIntf, EnhListView,
- {$IFDEF DFS_COMPILER_2}
- ExtColEd,
- {$ENDIF}
- ExtListView;
-
- procedure Register;
- begin
- RegisterComponents('DFS', [TEnhListView]);
- RegisterPropertyEditor(TypeInfo(TEnhLVSaveSettings), NIL, '', TClassProperty);
- RegisterComponents('DFS', [TExtListView]);
- RegisterPropertyEditor(TypeInfo(TExtLVSaveSettings), NIL, '', TClassProperty);
- {$IFDEF DFS_COMPILER_2}
- RegisterPropertyEditor(TypeInfo(TExtListColumns), NIL, '',
- TExtListColumnsProperty);
- {$ENDIF}
- end;
-
- end.
-