blob: ec0ec7ec7d9e62a9d34f4a81f36a89eee8e5c7ac [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.android.apps.syncslides.model;
import android.graphics.Bitmap;
/**
* A slide.
*/
public interface Slide {
/**
* Returns a Bitmap of the slide image.
*/
Bitmap getImage();
/**
* Returns the slide notes.
*/
String getNotes();
}