gloox  1.1-svn
jinglerawudp.cpp
1 /*
2  Copyright (c) 2009 by Jakob Schroeter <js@camaya.net>
3  This file is part of the gloox library. http://camaya.net/gloox
4 
5  This software is distributed under a license. The full license
6  agreement can be found in the file LICENSE in this distribution.
7  This software may not be copied, modified, sold or distributed
8  other than expressed in the named license agreement.
9 
10  This software is distributed without any warranty.
11 */
12 
13 
14 #include "jinglerawudp.h"
15 
16 namespace gloox
17 {
18 
19  namespace Jingle
20  {
21 
22  RawUDP::RawUDP()
23  {
24  }
25 
26  const std::string& RawUDP::filterString() const
27  {
28  static const std::string filter = "transport[@xmlns='" + XMLNS_JINGLE_RAW_UDP + "']";
29  return filter;
30  }
31 
32  Tag* RawUDP::tag() const
33  {
34 
35  return 0;
36  }
37 
38  }
39 
40 }