summaryrefslogtreecommitdiff
path: root/prototypes/miglayout/gui_mig_unitvalue.pas
blob: 44925357f7264d04d4b00897b413a0f9ba27b4c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
unit gui_mig_unitvalue;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils; 
  
type

  TUnitValue = class(TObject)
  private
    FPixels: integer;
  public
    property    Pixels: integer read FPixels;
  end;

implementation

end.