-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMembers.hpp
106 lines (92 loc) · 1.76 KB
/
Members.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/******************************************************************************
** (C) Chris Oldwood
**
** MODULE: MEMBERS.HPP
** COMPONENT: The Application.
** DESCRIPTION: The CMembers class declaration.
**
*******************************************************************************
*/
// Check for previous inclusion
#ifndef MEMBERS_HPP
#define MEMBERS_HPP
#if _MSC_VER > 1000
#pragma once
#endif
#include <MDBL/Table.hpp>
#include <vector>
// Forward declarations.
class CSubs;
/******************************************************************************
**
** The table used to store the club members.
**
*******************************************************************************
*/
class CMembers : public CTable
{
public:
//! A list of rows.
typedef std::vector<CRow*> RowList;
//
// Constructors/Destructor.
//
CMembers();
~CMembers();
//
// Column indices.
//
enum
{
ID,
SURNAME,
FORENAME,
POSTAL_ADDRESS,
STANDARD_PHONE,
ALTERNATE_PHONE,
EMAIL_ADDRESS,
IS_REGISTERED,
IS_SENIOR,
USUAL_TEAM,
USUAL_POSITION,
IS_AVAILABLE,
UNAVAIL_REASON,
NOTES,
BALANCE,
};
//
// Column lengths.
//
enum
{
SURNAME_LEN = 25,
FORENAME_LEN = 25,
POSTAL_LEN = 100,
PHONE_LEN = 30,
EMAIL_LEN = 50,
NOTES_LEN = 512,
};
//
// Persistance data.
//
enum
{
FILE_FORMAT = 0x4D4D4346, // "FCMM"
FILE_VERSION = 0x00000A01, // Alpha #1
};
//
// Methods.
//
void UpdateBalances(CSubs& oSubs, RowList& aoModified);
//
// Methods (overriden).
//
virtual CRow& CreateRow();
};
/******************************************************************************
**
** Implementation of inline functions.
**
*******************************************************************************
*/
#endif //MEMBERS_HPP