summaryrefslogtreecommitdiff
path: root/src/librygel-core
diff options
context:
space:
mode:
authorJens Georg <jensg@openismus.com>2013-08-15 12:30:12 +0200
committerJens Georg <jensg@openismus.com>2013-08-15 12:30:12 +0200
commit4b2c0f5127eb0026f32cbcf42c44f45538169219 (patch)
tree94b93f0f1ec8a0bf83b83161831c1d5e6c63c3d4 /src/librygel-core
parentbe20dc1cc8bb7bf455b38117d8a6ebfab5ab4d25 (diff)
downloadrygel-4b2c0f5127eb0026f32cbcf42c44f45538169219.tar.gz
core,server: Fix accidental file move
Diffstat (limited to 'src/librygel-core')
-rw-r--r--src/librygel-core/rygel-dlna-profile.vala44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/librygel-core/rygel-dlna-profile.vala b/src/librygel-core/rygel-dlna-profile.vala
deleted file mode 100644
index 20ec1c88..00000000
--- a/src/librygel-core/rygel-dlna-profile.vala
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2012 Intel Corporation.
- *
- * Author: Jens Georg <jensg@openismus.com>
- *
- * This file is part of Rygel.
- *
- * Rygel is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Rygel is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-/**
- * Data class representing a DLNA profile.
- * It contains the name and the corresponding DLNA mime type.
- *
- * Note: The mime type can deviate from mime types typically used elsewhere.
- */
-public class Rygel.DLNAProfile {
- public string mime;
- public string name;
-
- public DLNAProfile (string name, string mime) {
- this.mime = mime;
- this.name = name;
- }
-
- /**
- * Compare two DLNA profiles by name
- */
- public static int compare_by_name (DLNAProfile a, DLNAProfile b) {
- return a.name.ascii_casecmp (b.name);
- }
-}