~ubuntu-branches/ubuntu/precise/rygel/precise

« back to all changes in this revision

Viewing changes to src/plugins/test/rygel-test-content-dir.vala

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Henriksson
  • Date: 2009-09-26 14:04:05 UTC
  • Revision ID: james.westby@ubuntu.com-20090926140405-d5x3j13k10psa1gu
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2008 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>.
 
3
 * Copyright (C) 2008 Nokia Corporation.
 
4
 *
 
5
 * Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
 
6
 *                               <zeeshan.ali@nokia.com>
 
7
 *
 
8
 * This file is part of Rygel.
 
9
 *
 
10
 * Rygel is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU Lesser General Public License as published by
 
12
 * the Free Software Foundation; either version 2 of the License, or
 
13
 * (at your option) any later version.
 
14
 *
 
15
 * Rygel is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU Lesser General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU Lesser General Public License
 
21
 * along with this program; if not, write to the Free Software Foundation,
 
22
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
23
 */
 
24
 
 
25
using GUPnP;
 
26
using Gee;
 
27
 
 
28
/**
 
29
 * Implementation of ContentDirectory service, meant for testing purposes only.
 
30
 */
 
31
public class Rygel.TestContentDir : Rygel.ContentDirectory {
 
32
    /* Pubic methods */
 
33
    public override MediaContainer? create_root_container () {
 
34
        string friendly_name = this.root_device.get_friendly_name ();
 
35
        return new TestRootContainer (friendly_name);
 
36
    }
 
37
}
 
38