001package jmri.jmrit.turnoutoperations;
002
003import jmri.TurnoutOperation;
004
005/**
006 * Configuration for SensorTurnoutOperation class.
007 * All the work is done by the Common... class
008 *
009 * @author John Harper Copyright 2005
010 */
011public class SensorTurnoutOperationConfig extends CommonTurnoutOperationConfig {
012
013    /**
014     * Create the config JPanel, if there is one, to configure this operation
015     * type
016     * @param op turnout operation.
017     */
018    public SensorTurnoutOperationConfig(TurnoutOperation op) {
019        super(op);
020    }
021}