source: osm/applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/commands/MapillaryCommand.java@ 31245

Last change on this file since 31245 was 31245, checked in by nokutu, 10 years ago

New link to image's url at mapillary website

File size: 243 bytes
Line 
1package org.openstreetmap.josm.plugins.mapillary.commands;
2
3/**
4 * Abstract class for any Mapillary command.
5 *
6 * @author nokutu
7 *
8 */
9public abstract class MapillaryCommand {
10
11 public abstract void undo();
12
13 public abstract void redo();
14}
Note: See TracBrowser for help on using the repository browser.