Line | |
---|
1 | unit mVitResp;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
7 | mVitBase, StdCtrls, Buttons, ComCtrls;
|
---|
8 |
|
---|
9 | type
|
---|
10 | TfraVitResp = class(TfraVitBase)
|
---|
11 | UpDown1: TUpDown;
|
---|
12 | edtResp: TEdit;
|
---|
13 | private
|
---|
14 | { Private declarations }
|
---|
15 | public
|
---|
16 | function GetVitalInfo: TVitInfo; override;
|
---|
17 | end;
|
---|
18 |
|
---|
19 | var
|
---|
20 | fraVitResp: TfraVitResp;
|
---|
21 |
|
---|
22 | implementation
|
---|
23 |
|
---|
24 | uses uVitals;
|
---|
25 |
|
---|
26 | {$R *.DFM}
|
---|
27 |
|
---|
28 | { TfraVitResp }
|
---|
29 |
|
---|
30 | function TfraVitResp.GetVitalInfo: TVitInfo;
|
---|
31 | begin
|
---|
32 | Result.VType := vtResp;
|
---|
33 | Result.VValue := edtResp.Text;
|
---|
34 | end;
|
---|
35 |
|
---|
36 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.