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