mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-10 22:39:18 +02:00
49 lines
1.4 KiB
ObjectPascal
49 lines
1.4 KiB
ObjectPascal
{ $Id$}
|
|
{
|
|
*****************************************************************************
|
|
* Win32WSPairSplitter.pp *
|
|
* ---------------------- *
|
|
* *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
This file is part of the Lazarus Component Library (LCL)
|
|
|
|
See the file COPYING.modifiedLGPL.txt, included in this distribution,
|
|
for details about the license.
|
|
*****************************************************************************
|
|
}
|
|
unit Win32WSPairSplitter;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// To get as little as posible circles,
|
|
// uncomment only when needed for registration
|
|
////////////////////////////////////////////////////
|
|
WSPairSplitter, WSLCLClasses;
|
|
|
|
type
|
|
|
|
{ TWin32WSPairSplitterSide }
|
|
|
|
TWin32WSPairSplitterSide = class(TWSPairSplitterSide)
|
|
published
|
|
end;
|
|
|
|
{ TWin32WSCustomPairSplitter }
|
|
|
|
TWin32WSCustomPairSplitter = class(TWSCustomPairSplitter)
|
|
published
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|