summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2014-10-24 09:57:13 (GMT)
committerSwift Review <review@swift.im>2014-10-30 18:55:14 (GMT)
commit8096f80861667381b777af774cfd446d6fc8cda8 (patch)
tree46d050b1e678609c241d162b06cc511fba698888 /Sluift/ElementConvertors/MAMArchivedConvertor.h
parent5cf50d46aed4d2dac333e5e3b3bc2f57f7a1b835 (diff)
downloadswift-8096f80861667381b777af774cfd446d6fc8cda8.zip
swift-8096f80861667381b777af774cfd446d6fc8cda8.tar.bz2
Brining XEP-0313 (MAM) implementation in line with version 3.0.
Added support for <fin/> element, including serializer/parsers and unit tests for them. Added more unit tests based on XEP examples for existing parsers. Removed unneccesarry includes from existing MAM implementation. Test-Information: Existing and new unit tests pass successfully. Change-Id: I7e6bf85e0961d59801b452e4559cc1db9e9e6ed8
Diffstat (limited to 'Sluift/ElementConvertors/MAMArchivedConvertor.h')
-rw-r--r--Sluift/ElementConvertors/MAMArchivedConvertor.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/Sluift/ElementConvertors/MAMArchivedConvertor.h b/Sluift/ElementConvertors/MAMArchivedConvertor.h
deleted file mode 100644
index 9d95e4a..0000000
--- a/Sluift/ElementConvertors/MAMArchivedConvertor.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (c) 2014 Kevin Smith and Remko Tronçon
- * Licensed under the GNU General Public License v3.
- * See Documentation/Licenses/GPLv3.txt for more information.
- */
-
-#pragma once
-
-#include <Sluift/GenericLuaElementConvertor.h>
-#include <Swiften/Base/Override.h>
-#include <Swiften/Elements/MAMArchived.h>
-
-namespace Swift {
- class LuaElementConvertors;
-
- class MAMArchivedConvertor : public GenericLuaElementConvertor<MAMArchived> {
- public:
- MAMArchivedConvertor(LuaElementConvertors* convertors);
- virtual ~MAMArchivedConvertor();
-
- virtual boost::shared_ptr<MAMArchived> doConvertFromLua(lua_State*) SWIFTEN_OVERRIDE;
- virtual void doConvertToLua(lua_State*, boost::shared_ptr<MAMArchived>) SWIFTEN_OVERRIDE;
- virtual boost::optional<Documentation> getDocumentation() const SWIFTEN_OVERRIDE;
-
- private:
- LuaElementConvertors* convertors;
- };
-}
-