mirror of
https://github.com/TeamNewPipe/PipeCast
synced 2025-10-06 00:12:51 +02:00
18 lines
443 B
Java
18 lines
443 B
Java
package org.schabi.newpipe.cast;
|
|
|
|
import java.io.IOException;
|
|
|
|
import javax.xml.stream.XMLStreamException;
|
|
|
|
public abstract class Device {
|
|
public final String location;
|
|
|
|
public Device(String location) {
|
|
this.location = location;
|
|
}
|
|
|
|
public abstract String getName();
|
|
|
|
public abstract void play(String url, String title, String creator, String mimeType, ItemClass itemClass) throws IOException, XMLStreamException;
|
|
}
|