00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #include "jinglecontent.h"
00015
00016 namespace gloox
00017 {
00018
00019 namespace Jingle
00020 {
00021
00022 Content::Content()
00023 {
00024 }
00025
00026 Content::~Content()
00027 {
00028 }
00029
00030 const std::string& Content::filterString() const
00031 {
00032 static const std::string filter = "content";
00033 return filter;
00034 }
00035
00036 Tag* Content::tag() const
00037 {
00038 return 0;
00039 }
00040 }
00041
00042 }