001package jmri.jmrit.operations.setup;
002
003
004/**
005 * Specific Backup class for backing up and restoring Operations working files
006 * to the Default Backup Store. Derived from BackupBase.
007 *
008 * @author Gregory Madsen Copyright (C) 2012
009 */
010public class DefaultBackup extends BackupBase {
011
012//    private final static Logger log = LoggerFactory.getLogger(DefaultBackup.class);
013
014    /**
015     * Creates a DefaultBackup instance and initializes the root directory to
016     * the given name.
017     */
018    public DefaultBackup() {
019        super("backups"); // NOI18N
020    }
021}