001package jmri.jmrix.lenz.hornbyelite; 002 003/** 004 * Defines the routines that differentiate a Hornby Elite Command Station from a 005 * Lenz command station. 006 * 007 * @author Paul Bender Copyright (C) 2008 008 */ 009public class HornbyEliteCommandStation extends jmri.jmrix.lenz.LenzCommandStation { 010 011 /** 012 * The Hornby Elite does support Ops Mode programming. 013 */ 014 @Override 015 public boolean isOpsModePossible() { 016 return true; 017 } 018 019}