/[H6]/Containers.h
ViewVC logotype

Contents of /Containers.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 16 - (show annotations) (download)
Thu Aug 31 16:02:50 2006 UTC (17 years, 7 months ago) by torben
File MIME type: text/plain
File size: 458 byte(s)
All member vars should be lower case
1
2 #pragma once
3 #include <vector>
4 using namespace std;
5
6 struct Person
7 {
8 public:
9 CString id, inits, name, pass;
10 bool isadmin;
11 };
12
13 class Reservation
14 {
15 public:
16 CString inits, startdate, numdays;
17 };
18
19 class Checkout
20 {
21 public:
22 CString inits, tartdate, enddate, numdays;
23 };
24
25 class Equipment
26 {
27 public:
28 CString barcode, name,description, placement, status;
29 vector<Checkout> checkouts;
30 vector<Reservation> reservations;
31 };

  ViewVC Help
Powered by ViewVC 1.1.20