source: cprs/branches/foia-cprs/CPRS-Chart/Vitals/mVitResp.pas@ 459

Last change on this file since 459 was 459, checked in by Kevin Toppenberg, 16 years ago

Adding foia-cprs branch

File size: 584 bytes
Line 
1unit mVitResp;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
7 mVitBase, StdCtrls, Buttons, ComCtrls;
8
9type
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
19var
20 fraVitResp: TfraVitResp;
21
22implementation
23
24uses uVitals;
25
26{$R *.DFM}
27
28{ TfraVitResp }
29
30function TfraVitResp.GetVitalInfo: TVitInfo;
31begin
32 Result.VType := vtResp;
33 Result.VValue := edtResp.Text;
34end;
35
36end.
Note: See TracBrowser for help on using the repository browser.