2015-09-17 11:47:04 +02:00
|
|
|
{
|
|
|
|
This file is part of restemplate.
|
|
|
|
|
|
|
|
Copyright (C) 2015 Andreas Schneider
|
|
|
|
|
|
|
|
restemplate is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2015-09-22 21:03:29 +02:00
|
|
|
restemplate is distributed in the hope that it will be useful,
|
2015-09-17 11:47:04 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with restemplate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
}
|
|
|
|
|
|
|
|
program restemplate;
|
|
|
|
|
2015-09-22 10:54:59 +02:00
|
|
|
{$mode objfpc}{$H+}
|
2015-09-18 11:12:22 +02:00
|
|
|
|
2015-09-17 11:47:04 +02:00
|
|
|
uses
|
2015-10-04 14:14:55 +02:00
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
2015-09-29 15:20:36 +02:00
|
|
|
URestemplateApp, UFilter, UCRTHelper, vinfo;
|
2015-09-21 20:57:54 +02:00
|
|
|
|
2015-09-29 13:33:54 +02:00
|
|
|
{$R *.res}
|
2015-09-21 20:57:54 +02:00
|
|
|
|
2015-09-17 11:47:04 +02:00
|
|
|
var
|
2015-09-29 13:33:54 +02:00
|
|
|
Application: TRestemplateApplication;
|
2015-09-17 11:47:04 +02:00
|
|
|
begin
|
2015-09-29 13:33:54 +02:00
|
|
|
Application := TRestemplateApplication.Create;
|
|
|
|
Application.Title := 'restemplate';
|
|
|
|
Application.Run;
|
|
|
|
Application.Free;
|
2015-09-17 11:47:04 +02:00
|
|
|
end.
|
|
|
|
|