diff options
Diffstat (limited to 'main/src/cgeo/geocaching/export/Export.java')
-rw-r--r-- | main/src/cgeo/geocaching/export/Export.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/export/Export.java b/main/src/cgeo/geocaching/export/Export.java new file mode 100644 index 0000000..257238c --- /dev/null +++ b/main/src/cgeo/geocaching/export/Export.java @@ -0,0 +1,13 @@ +package cgeo.geocaching.export; + +import cgeo.geocaching.cgCache; + +import android.app.Activity; + +import java.util.List; + +public interface Export { + public void export(List<cgCache> caches, Activity activity); + + public String getName(); +} |