Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
39 lines (30 sloc)
645 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |