gloox  1.1-svn
jingledescription.h
1 /*
2  Copyright (c) 2008-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 #ifndef JINGLEDESCRIPTION_H__
15 #define JINGLEDESCRIPTION_H__
16 
17 
18 #include "jingleplugin.h"
19 #include "gloox.h"
20 
21 #include <list>
22 
23 namespace gloox
24 {
25 
26  class Tag;
27 
28  namespace Jingle
29  {
30 
41  class Description : public Plugin
42  {
43  public:
47  virtual ~Description() {}
48 
49  protected:
54  virtual const std::string& xmlns() const = 0;
55 
56  };
57 
58  }
59 
60 }
61 
62 #endif // JINGLEDESCRIPTION_H__