Last change
on this file since 828 was 456, checked in by Kevin Toppenberg, 16 years ago |
Initial Upload of Official WV CPRS 1.0.26.76
|
File size:
609 bytes
|
Line | |
---|
1 | unit mVitPO2;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
7 | mVitBase, StdCtrls, Buttons, ORCtrls, ComCtrls;
|
---|
8 |
|
---|
9 | type
|
---|
10 | TfraVitPO2 = class(TfraVitBase)
|
---|
11 | UpDown1: TUpDown;
|
---|
12 | lblPercent: TLabel;
|
---|
13 | edtPO2: TEdit;
|
---|
14 | private
|
---|
15 | { Private declarations }
|
---|
16 | public
|
---|
17 | function GetVitalInfo: TVitInfo; override;
|
---|
18 | end;
|
---|
19 |
|
---|
20 | var
|
---|
21 | fraVitPO2: TfraVitPO2;
|
---|
22 |
|
---|
23 | implementation
|
---|
24 |
|
---|
25 | uses uVitals;
|
---|
26 |
|
---|
27 | {$R *.DFM}
|
---|
28 |
|
---|
29 | { TfraVitPO2 }
|
---|
30 |
|
---|
31 | function TfraVitPO2.GetVitalInfo: TVitInfo;
|
---|
32 | begin
|
---|
33 | Result.VType := vtPO2;
|
---|
34 | Result.VValue := edtPO2.Text;
|
---|
35 | end;
|
---|
36 |
|
---|
37 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.