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 , 10 years ago | |
---|---|
File size: 243 bytes |
Line | |
---|---|
1 | package org.openstreetmap.josm.plugins.mapillary.commands; |
2 | |
3 | /** |
4 | * Abstract class for any Mapillary command. |
5 | * |
6 | * @author nokutu |
7 | * |
8 | */ |
9 | public 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.