OSDN Git Service

[modified] u_feedingcalc2.pasのStandardDailyWeightGainを訂正
[feedingorigin2/HikakuBunseki.git] / Inspection4JfsOrigin.lpr
1 {
2   Feeding Origin is software that supports calculation of nutrient requirement of livestock
3   and feed design based on Japanese feeding standard.
4   Copyright (C) 2017,  Syuichiro Fukagawa.
5
6   This program is free software; you can redistribute it and/or modify it under the terms of
7   the GNU General Public License as published by the Free Software Foundation; either version 3
8   of the License, or (at your option) any later version.
9   This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10   without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11   See the GNU General Public License for more details.
12   You should have received a copy of the GNU General Public License along with this program.
13   If not, see <http://www.gnu.org/licenses/>.
14
15
16   Feeding Originは、日本飼養標準に基づいた家畜の養分要求量の計算および飼料設計を支援するソフ
17   トウェアです.
18   Copyright (C) 2017, 深川修一郎.
19
20    このプログラムはフリーソフトウェアです。あなたはこれを、フリーソフトウェア財団によって
21   発行されたGNU一般公衆利用許諾書(バージョン3か、それ以降のバージョンのうちどれか)が定める
22   条件の下で再頒布または改変することができます。
23   このプログラムは有用であることを願って頒布されますが、*全くの無保証* です。商業可能性の保証
24   や特定目的への適合性は、言外に示されたものも含め、全く存在しません。詳しくはGNU一般公衆利用
25   許諾書をご覧ください。
26    あなたはこのプログラムと共に、GNU一般公衆利用許諾書のコピーを一部 受け取っているはずです。
27   もし受け取っていなければ、<http://www.gnu.org/licenses/> をご覧ください。
28   
29   *本日本語訳は、FSFより2007年6月29日に発行されたGNU GPL v3の原文から、八田真行氏が翻訳した
30    ものを基にしています。 < https://mag.osdn.jp/07/09/02/130237 >
31 }
32
33 program Inspection4JfsOrigin;
34
35 {$mode objfpc}{$H+}
36
37 uses
38   {$IFDEF UNIX}{$IFDEF UseCThreads}
39   cthreads,
40   {$ENDIF}{$ENDIF}
41   Interfaces, // this includes the LCL widgetset
42   Forms, tachartlazaruspkg, u_DataGenerator1, u_Marker, u_regWorkData, u_splash
43   { you can add units after this };
44
45 {$R *.res}
46
47 begin
48   RequireDerivedFormResource := True;
49   Application.Initialize;
50   Application.CreateForm(TForm1, Form1);
51   Application.CreateForm(TfMarker, fMarker);
52   Application.CreateForm(TRegWorkForm, RegWorkForm);
53   Application.CreateForm(TfSplash, fSplash);
54   Application.Run;
55 end.
56