001package jmri.jmrix.rps;
002
003/**
004 * Connect to a source of Readings.
005 *
006 * @author Bob Jacobsen Copyright (C) 2006
007 */
008public interface ReadingListener {
009
010    void notify(Reading r);
011
012}