class CharDet::MBCSGroupProber

Public Class Methods

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