コード例 #1
0
ファイル: print.go プロジェクト: sbinet/go-tucs
func PrintWorker(rtype tucs.RegionType) tucs.Worker {
	w := &printWorker{
		Base:     tucs.NewBase(rtype),
		nregions: 0,
	}
	return w
}
コード例 #2
0
ファイル: print.go プロジェクト: sbinet/go-tucs
func Print(rtype tucs.RegionType, cfg PrintCfg) tucs.Worker {
	w := &printWorker{
		Base: tucs.NewBase(rtype),
		cfg:  cfg,
	}
	return w
}