/[H6]/Containers.h
ViewVC logotype

Diff of /Containers.h

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

revision 33 by torben, Mon Sep 4 06:13:59 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    enum EquipmentStatus {
11            StatusCheckedout=1,
12            StatusReserved=2,
13            StatusAvailable=3
14    };
15    
16  class Person  class Person
17  {  {
18          public:          public:
# 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.33  
changed lines
  Added in v.56

  ViewVC Help
Powered by ViewVC 1.1.20