-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathClan.h
More file actions
39 lines (30 loc) · 645 Bytes
/
Clan.h
File metadata and controls
39 lines (30 loc) · 645 Bytes
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
#ifndef __CLANDEFINITION
#define __CLANDEFINITION
// wxWindows includes
#include <wx/datetime.h>
#include <wx/string.h>
#include <wx/dynarray.h>
#include <wx/regex.h>
// Statsgen Includes
class Clan;
WX_DECLARE_OBJARRAY(Clan,ArrayOfClan);
class Clan
{
public:
void ReadConfig();
void WriteConfig();
Clan(wxString &idIn);
virtual ~Clan();
static wxString SQLCreateTable();
static wxString SQLTableName();
bool WriteToDatabase(int itemIndex);
bool IsMember(wxString &name);
wxString tag;
wxString name;
wxString webAddress;
wxString banner;
wxString regExpString;
wxRegEx *regExp;
wxString id;
};
#endif