Ignore:
Timestamp:
Mar 31, 2010, 5:06:56 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

Added functions to Templates, and Images tab

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/tmg-cprs/CPRS-Chart/uCore.pas

    r453 r729  
    108108  public
    109109    procedure Clear;
     110    procedure Assign(Source : TPatient);  //kt added 1/8/08
    110111    property DFN:              string      read FDFN write SetDFN;  //*DFN*
    111112    property ICN:              string      read FICN;
     
    687688end;
    688689
     690procedure TPatient.Assign(Source : TPatient);  //kt added 1/8/08
     691begin
     692  DFN := Source.DFN;
     693  {Note: other properties are read only, determined by DFN}
     694end;
     695
    689696function TPatient.GetDateDied: TFMDateTime;
    690697begin
Note: See TracChangeset for help on using the changeset viewer.