blob: 48d628064e94df0458f5d23535eae83774b5d0d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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();
}
|