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