class CharDet::MBCSGroupProber

Public Class Methods

new() click to toggle source
Calls superclass method CharDet::CharSetGroupProber.new
# File lib/tmail/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb, line 33
def initialize
  super
  @_mProbers = [ UTF8Prober.new,
                 SJISProber.new,
                 EUCJPProber.new,
                 GB2312Prober.new,
                 EUCKRProber.new,
                 Big5Prober.new,
                 EUCTWProber.new ]
  reset()
end