package PatternVisitor.car;

public interface CarElementVisitable {
	void accept(CarElementVisitor visitor);
}
