<?PHP

  /**
   * phOSCAR
   * -------
   * An OSCAR-Implementation in PHP 5
   * 
   * This work is distributed within the terms of
   * creative commons attribution-share alike 2.0 germany
   * 
   * See http://creativecommons.org/licenses/by-sa/2.0/ for more information
   * 
   * @author Bernd Holzmueller <bernd@tiggerswelt.net>
   * @revision 03
   * @license http://creativecommons.org/licenses/by-sa/2.0/de/ Creative Commons Attribution-Share Alike 2.0 Germany
   * @homepage http://oss.tiggerswelt.net/oscar/
   * @copyright Copyright &copy; 2008 tiggersWelt.net 
   */

  class Oscar_TLV_Userclass extends Oscar_TLV {
    /* Type of this TLV */
    const TYPE = 0x0001;
    
    const UNCONFIRMED = 0x0001;
    const AOL_ADMINISTRATOR = 0x0002;
    const AOL_STAFF = 0x0004;
    const AOL_COMMERCIAL = 0x0008;
    const FREE_USER = 0x0010;
    const AWAY_USER = 0x0020;
    const ICQ_USER = 0x0040;
    const AOL_WIRELESS = 0x0080;
  }

?>