mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-14 10:57:08 +03:00
27 lines
307 B
ObjectPascal
27 lines
307 B
ObjectPascal
|
{$mode objfpc}
|
||
|
|
||
|
unit Classes;
|
||
|
|
||
|
{$i _defines.inc}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
RTLConsts, SysUtils, Types, TypInfo;
|
||
|
|
||
|
{$i classesh.inc}
|
||
|
|
||
|
implementation
|
||
|
|
||
|
uses
|
||
|
SysConst;
|
||
|
|
||
|
{ OS - independent class implementations are in /inc directory. }
|
||
|
{$i classes.inc}
|
||
|
|
||
|
initialization
|
||
|
CommonInit;
|
||
|
finalization
|
||
|
CommonCleanup;
|
||
|
end.
|