/[H6]/Containers.h
ViewVC logotype

Annotation of /Containers.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9 - (hide annotations) (download)
Wed Aug 30 21:57:57 2006 UTC (17 years, 7 months ago) by torben
File MIME type: text/plain
File size: 458 byte(s)
Finished (???) administration part - plus made a dummy offline version of the DatabaseLayer class.
1 torben 7
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 torben 9 class Equipment
26 torben 7 {
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