diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-01-29 17:48:13 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-01-29 18:45:34 (GMT) |
commit | 869c52b244c2d03313e9eda83fac05bf0fc3a619 (patch) | |
tree | 63f0518e15d0c23ece6eb55733c2ef44f710bf01 /Swiften/Elements/JingleDescription.h | |
parent | 11a7f5c48ea9c90e9adaaa06a96e0a9116234bff (diff) | |
download | swift-contrib-869c52b244c2d03313e9eda83fac05bf0fc3a619.zip swift-contrib-869c52b244c2d03313e9eda83fac05bf0fc3a619.tar.bz2 |
Added some experimental Jingle classes.
Diffstat (limited to 'Swiften/Elements/JingleDescription.h')
-rw-r--r-- | Swiften/Elements/JingleDescription.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Swiften/Elements/JingleDescription.h b/Swiften/Elements/JingleDescription.h new file mode 100644 index 0000000..775c0f7 --- /dev/null +++ b/Swiften/Elements/JingleDescription.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2011 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <boost/shared_ptr.hpp> + +#include <Swiften/Elements/Payload.h> + +namespace Swift { + class JingleDescription : public Payload { + public: + typedef boost::shared_ptr<JingleDescription> ref; + }; +} |