OSDN Git Service

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