We're living in 2004 now... perl is your friend for these kinds of things :)
[squirrelmail.git] / class / mime / Language.class.php
... / ...
CommitLineData
1<?php
2
3/**
4 * Language.class.php
5 *
6 * Copyright (c) 2003-2004 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This contains functions needed to handle mime messages.
10 *
11 * $Id$
12 * @package squirrelmail
13 */
14
15/**
16 * Undocumented class
17 * @package squirrelmail
18 */
19class Language {
20 function Language($name) {
21 $this->name = $name;
22 $this->properties = array();
23 }
24}
25
26?>