~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to iris/src/irisnet/corelib/irisnetplugin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2006  Justin Karneges
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
17
 * 02110-1301  USA
 
18
 *
 
19
 */
 
20
 
 
21
#include "irisnetplugin.h"
 
22
 
 
23
namespace XMPP {
 
24
 
 
25
//----------------------------------------------------------------------------
 
26
// IrisNetProvider
 
27
//----------------------------------------------------------------------------
 
28
NetInterfaceProvider *IrisNetProvider::createNetInterfaceProvider()
 
29
{
 
30
        return 0;
 
31
}
 
32
 
 
33
NetAvailabilityProvider *IrisNetProvider::createNetAvailabilityProvider()
 
34
{
 
35
        return 0;
 
36
}
 
37
 
 
38
NameProvider *IrisNetProvider::createNameProviderInternet()
 
39
{
 
40
        return 0;
 
41
}
 
42
 
 
43
NameProvider *IrisNetProvider::createNameProviderLocal()
 
44
{
 
45
        return 0;
 
46
}
 
47
 
 
48
ServiceProvider *IrisNetProvider::createServiceProvider()
 
49
{
 
50
        return 0;
 
51
}
 
52
 
 
53
//----------------------------------------------------------------------------
 
54
// NameProvider
 
55
//----------------------------------------------------------------------------
 
56
bool NameProvider::supportsSingle() const
 
57
{
 
58
        return false;
 
59
}
 
60
 
 
61
bool NameProvider::supportsLongLived() const
 
62
{
 
63
        return false;
 
64
}
 
65
 
 
66
bool NameProvider::supportsRecordType(int type) const
 
67
{
 
68
        Q_UNUSED(type);
 
69
        return false;
 
70
}
 
71
 
 
72
void NameProvider::resolve_localResultsReady(int id, const QList<XMPP::NameRecord> &results)
 
73
{
 
74
        Q_UNUSED(id);
 
75
        Q_UNUSED(results);
 
76
}
 
77
 
 
78
void NameProvider::resolve_localError(int id, XMPP::NameResolver::Error e)
 
79
{
 
80
        Q_UNUSED(id);
 
81
        Q_UNUSED(e);
 
82
}
 
83
 
 
84
}