Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / examples / propstorage / unit1.pas
Size: Mime:
unit Unit1;

{$mode objfpc}{$H+}

interface

uses
  Forms, StdCtrls, XMLPropStorage, IniPropStorage;

type

  { TForm1 }

  TForm1 = class(TForm)
    IniPropStorage1: TIniPropStorage;
    Memo1: TMemo;
    XMLPropStorage1: TXMLPropStorage;
  private

  public

  end;

var
  Form1: TForm1;

implementation

{$R *.lfm}

initialization


end.