/[H6]/Containers.h
ViewVC logotype

Contents of /Containers.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 31 - (show annotations) (download)
Sun Sep 3 10:10:19 2006 UTC (17 years, 7 months ago) by torben
File MIME type: text/plain
File size: 513 byte(s)
Added author/developer comments
1 /*
2 * Primary developers: Hedin & Kevin
3 */
4
5 #pragma once
6
7 #include <vector>
8 using namespace std;
9
10 struct Person
11 {
12 public:
13 CString id, inits, name, pass;
14 bool isadmin;
15 };
16
17 class Reservation
18 {
19 public:
20 CString reservationID,inits, startdate;
21 };
22
23 class Checkout
24 {
25 public:
26 CString inits, startdate, enddate, numdays;
27 };
28
29 class Equipment
30 {
31 public:
32 CString barcode, name,description, placement, status;
33 vector<Checkout> checkouts;
34 vector<Reservation> reservations;
35 };

  ViewVC Help
Powered by ViewVC 1.1.20