blob: 6b1532d2ed15679f41244bb81d91f540d3ceddb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package cgeo.geocaching.mapinterfaces;
import cgeo.geocaching.cgUser;
/**
* Common functions of the provider-specific
* UserOverlayItem implementations
* @author rsudev
*
*/
public interface UserOverlayItemImpl extends OverlayItemImpl {
public cgUser getUser();
}
|