package code.type;

import code.type.visitor.TypeVisitor;

/**
 * A Type Constructor
 *
 * @author jimeng
 * @since November 26, 2002
 */
public class TypeConstructor extends TypeIdentifier {

    // Package scope constructor for use by TypeFactory
    TypeConstructor(String name) { super(name); }

    public <R,T> R accept(TypeVisitor<R,T> v, T o) {
        return v.visit(this, o);
    }
}

