~vanvugt/ubuntu/oneiric/mediatomb/fix-770964-784431

« back to all changes in this revision

Viewing changes to src/upnp_mrreg.cc

  • Committer: Bazaar Package Importer
  • Author(s): Andres Mejia
  • Date: 2008-02-02 01:42:48 UTC
  • Revision ID: james.westby@ubuntu.com-20080202014248-cjouolddb8gi2zkz
Tags: upstream-0.10.0.dfsg1
ImportĀ upstreamĀ versionĀ 0.10.0.dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*MT*
 
2
    
 
3
    MediaTomb - http://www.mediatomb.cc/
 
4
    
 
5
    upnp_mrreg.cc - this file is part of MediaTomb.
 
6
    
 
7
    Copyright (C) 2005 Gena Batyan <bgeradz@mediatomb.cc>,
 
8
                       Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>
 
9
    
 
10
    Copyright (C) 2006-2007 Gena Batyan <bgeradz@mediatomb.cc>,
 
11
                            Sergey 'Jin' Bostandzhyan <jin@mediatomb.cc>,
 
12
                            Leonhard Wimmer <leo@mediatomb.cc>
 
13
    
 
14
    MediaTomb is free software; you can redistribute it and/or modify
 
15
    it under the terms of the GNU General Public License version 2
 
16
    as published by the Free Software Foundation.
 
17
    
 
18
    MediaTomb is distributed in the hope that it will be useful,
 
19
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
20
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
21
    GNU General Public License for more details.
 
22
    
 
23
    You should have received a copy of the GNU General Public License
 
24
    version 2 along with MediaTomb; if not, write to the Free Software
 
25
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
26
    
 
27
    $Id: upnp_mrreg.cc 1124 2007-02-17 21:49:15Z lww $
 
28
*/
 
29
 
 
30
/// \file upnp_mrreg.cc
 
31
 
 
32
#ifdef HAVE_CONFIG_H
 
33
    #include "autoconfig.h"
 
34
#endif
 
35
 
 
36
#if defined(ENABLE_MRREG)
 
37
 
 
38
#include "upnp_mrreg.h"
 
39
 
 
40
using namespace zmm;
 
41
using namespace mxml;
 
42
 
 
43
SINGLETON_MUTEX(MRRegistrarService, false);
 
44
 
 
45
String MRRegistrarService::serviceType = nil;
 
46
String MRRegistrarService::serviceID = nil;
 
47
 
 
48
MRRegistrarService::MRRegistrarService() : Singleton<MRRegistrarService>()
 
49
{
 
50
    if (serviceType == nil || serviceID == nil)
 
51
        throw _Exception(_("serviceType or serviceID not set!"));
 
52
}
 
53
 
 
54
MRRegistrarService::~MRRegistrarService()
 
55
{
 
56
    serviceType = nil;
 
57
    serviceID = nil;
 
58
}
 
59
 
 
60
void MRRegistrarService::setStaticArgs(String _serviceType, String _serviceID)
 
61
{
 
62
    serviceType = _serviceType;
 
63
    serviceID = _serviceID;
 
64
}
 
65
 
 
66
#endif // ENABLE_MRREG