blob: 453c8a969091975bdb4b509da55c463c540f8846 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package cgeo.geocaching.maps.interfaces;
import cgeo.geocaching.go4cache.Go4CacheUser;
/**
* Common functions of the provider-specific
* UserOverlayItem implementations
*/
public interface OtherCachersOverlayItemImpl extends OverlayItemImpl {
public Go4CacheUser getUser();
}
|