Back to project page android-augment-reality-framework.
The source code is released under:
GNU General Public License
If you think the Android project android-augment-reality-framework listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jwetherell.augmented_reality.data; //from w w w. j av a 2s . c o m import java.util.List; import com.jwetherell.augmented_reality.ui.Marker; /** * This abstract class should be extended for new data sources. * * @author Justin Wetherell <phishman3579@gmail.com> */ public abstract class DataSource { public abstract List<Marker> getMarkers(); }