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