minor bug fix
[openemr.git] / library / classes / Person.class.php
blob33af454de4648a7797afb3984acd02a925a095c2
1 <?php
2 /************************************************************************
3 pharmacy.php - Copyright duhlman
5 /usr/share/apps/umbrello/headings/heading.php
7 This file was generated on %date% at %time%
8 The original location of this file is /home/duhlman/uml-generated-code/prescription.php
9 **************************************************************************/
11 require_once("ORDataObject.class.php");
12 /**
13 * class Person
16 class Person {
17 var $id;
18 var $last_name;
19 var $first_name;
20 var $user_name;
22 /**
23 * Constructor sets all Prescription attributes to their default value
25 function Person($id = "", $prefix = "") {
26 $this->id = $id;
30 function populate() {
34 } // end of Person