summaryrefslogtreecommitdiffstats
blob: b7b916663165890e7a3c79936d5353de341681f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * Copyright (c) 2013 Remko Tronçon
 * Licensed under the GNU General Public License.
 * See the COPYING file for more information.
 */

#include <Sluift/ElementConvertors/PubSubRetractConvertor.h>
#include <Sluift/ElementConvertors/PubSubAffiliationsConvertor.h>
#include <Sluift/ElementConvertors/PubSubPublishConvertor.h>
#include <Sluift/ElementConvertors/PubSubItemsConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerRedirectConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventRedirectConvertor.h>
#include <Sluift/ElementConvertors/PubSubConfigureConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventDisassociateConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerAffiliationsConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerConfigureConvertor.h>
#include <Sluift/ElementConvertors/UserLocationConvertor.h>
#include <Sluift/ElementConvertors/PubSubSubscribeOptionsConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerSubscriptionsConvertor.h>
#include <Sluift/ElementConvertors/PubSubDefaultConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventCollectionConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventSubscriptionConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventRetractConvertor.h>
#include <Sluift/ElementConvertors/PubSubItemConvertor.h>
#include <Sluift/ElementConvertors/PubSubUnsubscribeConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventDeleteConvertor.h>
#include <Sluift/ElementConvertors/PubSubCreateConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerPurgeConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventItemsConvertor.h>
#include <Sluift/ElementConvertors/PubSubOptionsConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventItemConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerSubscriptionConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerAffiliationConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventPurgeConvertor.h>
#include <Sluift/ElementConvertors/PubSubAffiliationConvertor.h>
#include <Sluift/ElementConvertors/PubSubSubscribeConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerDeleteConvertor.h>
#include <Sluift/ElementConvertors/PubSubOwnerDefaultConvertor.h>
#include <Sluift/ElementConvertors/PubSubSubscriptionsConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventAssociateConvertor.h>
#include <Sluift/ElementConvertors/PubSubSubscriptionConvertor.h>
#include <Sluift/ElementConvertors/PubSubEventConfigurationConvertor.h>

void LuaElementConvertors::registerConvertors() {
	convertors.push_back(boost::make_shared<PubSubRetractConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubAffiliationsConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubPublishConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubItemsConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerRedirectConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventRedirectConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubConfigureConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventDisassociateConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerAffiliationsConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerConfigureConvertor>(this));
	convertors.push_back(boost::make_shared<UserLocationConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubSubscribeOptionsConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerSubscriptionsConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubDefaultConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventCollectionConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventSubscriptionConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventRetractConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubItemConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubUnsubscribeConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventDeleteConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubCreateConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerPurgeConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventItemsConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOptionsConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventItemConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerSubscriptionConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerAffiliationConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventPurgeConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubAffiliationConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubSubscribeConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerDeleteConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubOwnerDefaultConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubSubscriptionsConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventAssociateConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubSubscriptionConvertor>(this));
	convertors.push_back(boost::make_shared<PubSubEventConfigurationConvertor>(this));
}