<h2>Classes</h2>
These are nice data types for dealing with...  Data!<p>
<ul>
<li><a name="class_club_archive">
club_archive</a><pre>
class club_archive {
                     int archive_date;
                     string subject;
                     string matter;
}

</pre><br/>
This class is used for the archives in elected clubs.<p>
<dl>
<dt><b>Members:</b>
<br/>subject - the subject of the archive
<br/>matter - the actual matter of the archive

</dl>

<li><a name="class_club_transaction">
club_transaction</a><pre>
class club_transaction {
                         string who;
                         int amount;
                         int transaction_type;
                         int date;
                         string information;
}

</pre><br/>
This class is used to keep track of financial transactions for
each club.<p>
<dl>
<dt><b>Members:</b>
<br/>who - who made the transaction
<br/>amount - Amount of the transaction
<br/>transaction_type - type of the transaction
<br/>date - the date at which the transaction occured
<br/>information - the information about the transaction

</dl>

<li><a name="class_discussion_idea">
discussion_idea</a><pre>
class discussion_idea {
                        int id;
                        int time_added;
                        int time_finish;
                        int discuss_type;
                        string added_by;
                        string name;
                        string information;
                        mapping choices;
                        string * voted;
                        mixed optional_data;
}

</pre><br/>
This class is for a discussion idea associated with a club.<p>
<dl>
<dt><b>Members:</b>
<br/>id - the unique id of the discusion idea
<br/>time_added - the time the discussion item was added
<br/>discuss_type - the type of the item up for discusion
<br/>added_by - the name of the member who added the item
<br/>information - entered by the person when they added the discussion
<br/>name - the name of the person who added the item
<br/>choices - the choices and votes for the discussion
<br/>voted - who has voted for the item
<br/>optional_data - the extra data associated with the idea

</dl>

<li><a name="class_family_response_data">
family_response_data</a><pre>
class family_response_data {
                             string family;
                             string relationship;
}

</pre><br/>
This defines the class to use for accepting into families.<p>
<dl>
<dt><b>Members:</b>
<br/>family - the family name
<br/>relationship - the relationship type

</dl>

<li><a name="class_relationship_data">
relationship_data</a><pre>
class relationship_data {
                          string related_to;
                          string relationship;
}

</pre><br/>
This class defines the stuff which shows the relationships between the
two people.<p>
<dl>
<dt><b>Members:</b>
<br/>related_to - who they are related to
<br/>relationship - the relationship between the two people

</dl>

</ul>
[an error occurred while processing this directive]

