File: pps-document-media.c

package info (click to toggle)
papers 49.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 21,044 kB
  • sloc: ansic: 37,728; sh: 197; xml: 127; makefile: 113
file content (25 lines) | stat: -rw-r--r-- 660 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: GPL-2.0-or-later
/* pps-document-media.c
 *  this file is part of papers, a gnome document_links viewer
 *
 * Copyright (C) 2015 Igalia S.L.
 */

#include "pps-document-media.h"
#include <config.h>

G_DEFINE_INTERFACE (PpsDocumentMedia, pps_document_media, 0)

static void
pps_document_media_default_init (PpsDocumentMediaInterface *klass)
{
}

PpsMappingList *
pps_document_media_get_media_mapping (PpsDocumentMedia *document_media,
                                      PpsPage *page)
{
	PpsDocumentMediaInterface *iface = PPS_DOCUMENT_MEDIA_GET_IFACE (document_media);

	return iface->get_media_mapping (document_media, page);
}