All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.skjolber.dc.gtfs.GtfsIntermediateProcessor Maven / Gradle / Ivy

package com.github.skjolber.dc.gtfs;

import com.github.skjolber.dc.GtfsFeed;

public class GtfsIntermediateProcessor extends IntermediateProcessor {

	protected GtfsFeed feed;
	
	public GtfsIntermediateProcessor(int count, GtfsFeed feed) {
		super(count);
		
		this.feed = feed;
	}

	public GtfsFeed getFeed() {
		return feed;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy