blob: f58580e6f3ffc4d8ccc655915531b902fc70f990 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// SPDX-License-Identifier: GPL-2.0-or-later
/**
* @file
* Find an extension by its mime type.
*/
/* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Frank Felfe <innerspace@iname.com>
* bulia byak <buliabyak@users.sf.net>
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
* Kris De Gussem <Kris.DeGussem@gmail.com>
*
* Copyright (C) 2012 Kris De Gussem
* Copyright (C) 2010 authors
* Copyright (C) 1999-2005 authors
* Copyright (C) 2004 David Turner
* Copyright (C) 2001-2002 Ximian, Inc.
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "input.h"
namespace Inkscape {
namespace Extension {
static inline Inkscape::Extension::Extension *find_by_mime(const char *const mime)
{
Inkscape::Extension::DB::InputList o;
Inkscape::Extension::db.get_input_list(o);
Inkscape::Extension::DB::InputList::const_iterator i = o.begin();
while (i != o.end() && strcmp((*i)->get_mimetype(), mime) != 0) {
++i;
}
return *i;
}
}
}
|