/[H6]/Containers.h
ViewVC logotype

Diff of /Containers.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 31 by torben, Sun Sep 3 10:10:19 2006 UTC revision 56 by torben, Tue Sep 12 10:16:06 2006 UTC
# Line 7  Line 7 
7  #include <vector>  #include <vector>
8  using namespace std;  using namespace std;
9    
10  struct Person  enum EquipmentStatus {
11            StatusCheckedout=1,
12            StatusReserved=2,
13            StatusAvailable=3
14    };
15    
16    class Person
17  {  {
18          public:          public:
19                  CString id, inits, name, pass;                  CString id, inits, name, pass;
# Line 30  class Equipment Line 36  class Equipment
36  {  {
37          public:          public:
38                  CString barcode, name,description, placement, status;                  CString barcode, name,description, placement, status;
39                    int statusid;
40                  vector<Checkout> checkouts;                  vector<Checkout> checkouts;
41                  vector<Reservation> reservations;                  vector<Reservation> reservations;
42  };  };

Legend:
Removed from v.31  
changed lines
  Added in v.56

  ViewVC Help
Powered by ViewVC 1.1.20