| Last change
 on this file since 1397 was             453, checked in by Kevin Toppenberg, 17 years ago | 
        
          | 
Initial upload of TMG-CPRS 1.0.26.69
 | 
        
          | File size:
            641 bytes | 
      
      
| Rev | Line |  | 
|---|
| [453] | 1 | //kt -- Modified with SourceScanner on 8/8/2007 | 
|---|
|  | 2 | unit mVitResp; | 
|---|
|  | 3 |  | 
|---|
|  | 4 | interface | 
|---|
|  | 5 |  | 
|---|
|  | 6 | uses | 
|---|
|  | 7 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, | 
|---|
|  | 8 | mVitBase, StdCtrls, Buttons, ComCtrls, DKLang; | 
|---|
|  | 9 |  | 
|---|
|  | 10 | type | 
|---|
|  | 11 | TfraVitResp = class(TfraVitBase) | 
|---|
|  | 12 | UpDown1: TUpDown; | 
|---|
|  | 13 | edtResp: TEdit; | 
|---|
|  | 14 | private | 
|---|
|  | 15 | { Private declarations } | 
|---|
|  | 16 | public | 
|---|
|  | 17 | function GetVitalInfo: TVitInfo; override; | 
|---|
|  | 18 | end; | 
|---|
|  | 19 |  | 
|---|
|  | 20 | var | 
|---|
|  | 21 | fraVitResp: TfraVitResp; | 
|---|
|  | 22 |  | 
|---|
|  | 23 | implementation | 
|---|
|  | 24 |  | 
|---|
|  | 25 | uses uVitals; | 
|---|
|  | 26 |  | 
|---|
|  | 27 | {$R *.DFM} | 
|---|
|  | 28 |  | 
|---|
|  | 29 | { TfraVitResp } | 
|---|
|  | 30 |  | 
|---|
|  | 31 | function TfraVitResp.GetVitalInfo: TVitInfo; | 
|---|
|  | 32 | begin | 
|---|
|  | 33 | Result.VType := vtResp; | 
|---|
|  | 34 | Result.VValue := edtResp.Text; | 
|---|
|  | 35 | end; | 
|---|
|  | 36 |  | 
|---|
|  | 37 | end. | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.