1{ $Id$}
2{
3 *****************************************************************************
4 *                           Gtk2WSPairSplitter.pp                           *
5 *                           ---------------------                           *
6 *                                                                           *
7 *                                                                           *
8 *****************************************************************************
9
10 *****************************************************************************
11  This file is part of the Lazarus Component Library (LCL)
12
13  See the file COPYING.modifiedLGPL.txt, included in this distribution,
14  for details about the license.
15 *****************************************************************************
16}
17unit Gtk2WSPairSplitter;
18
19{$mode objfpc}{$H+}
20
21interface
22
23uses
24////////////////////////////////////////////////////
25// I M P O R T A N T
26////////////////////////////////////////////////////
27// To get as little as posible circles,
28// uncomment only when needed for registration
29////////////////////////////////////////////////////
30//  PairSplitter,
31////////////////////////////////////////////////////
32  WSPairSplitter, WSLCLClasses;
33
34type
35
36  { TGtk2WSPairSplitterSide }
37
38  TGtk2WSPairSplitterSide = class(TWSPairSplitterSide)
39  private
40  protected
41  public
42  end;
43
44  { TGtk2WSCustomPairSplitter }
45
46  TGtk2WSCustomPairSplitter = class(TWSCustomPairSplitter)
47  private
48  protected
49  public
50  end;
51
52
53implementation
54
55end.
56