<?PHP

  /**
   * phOSCAR
   * -------
   * An OSCAR-Implementation in PHP 5
   * 
   * This work is distributed within the terms of
   * creative commons attribution-share alike 3.0 germany
   * 
   * See http://creativecommons.org/licenses/by-sa/3.0/ for more information
   * 
   * @author Bernd Holzmueller <bernd@tiggerswelt.net>
   * @revision 03
   * @license http://creativecommons.org/licenses/by-sa/3.0/de/ Creative Commons Attribution-Share Alike 3.0 Germany
   * @homepage http://oss.tiggerswelt.net/oscar/
   * @copyright Copyright &copy; 2009 tiggersWelt.net 
   */
  
  require_once ("oscar/tlv.php");
  require_once ("oscar/tlv/helper/capability.php");
  
  class Oscar_TLV_NickInfo_Capability extends Oscar_TLV_Helper_Capability {
    const TYPE = 0x000D;
  }
  
  Oscar_TLV::classAdd ("NICK_INFO_TAGS", "Oscar_TLV_NickInfo_Capability");

?>