summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Akulich <akulichalexander@gmail.com>2020-02-09 01:35:24 +0300
committerAlexander Akulich <akulichalexander@gmail.com>2020-02-09 16:18:15 +0300
commite4c18cc5ceeb46128b75d17d8be9c4450bae985f (patch)
tree86e4dcbcd3b1ea439dbd2a42967f0026f7d2aeb5
parentf0a4cf79ef6a46698ff69a45455056af2290630c (diff)
service-types.h: Sort forward class declarations
-rw-r--r--TelepathyQt/service-types.h110
1 files changed, 55 insertions, 55 deletions
diff --git a/TelepathyQt/service-types.h b/TelepathyQt/service-types.h
index ecc46183..77443118 100644
--- a/TelepathyQt/service-types.h
+++ b/TelepathyQt/service-types.h
@@ -32,96 +32,96 @@
namespace Tp
{
-class AbstractProtocolInterface;
class AbstractCallContentInterface;
-class AbstractConnectionInterface;
class AbstractChannelInterface;
+class AbstractConnectionInterface;
+class AbstractProtocolInterface;
class BaseCallContent;
-class BaseCallMuteInterface;
class BaseCallContentDTMFInterface;
+class BaseCallMuteInterface;
+class BaseChannel;
+class BaseChannelCallType;
+class BaseChannelCaptchaAuthenticationInterface;
+class BaseChannelChatStateInterface;
+class BaseChannelConferenceInterface;
+class BaseChannelFileTransferType;
+class BaseChannelGroupInterface;
+class BaseChannelHoldInterface;
+class BaseChannelMergeableConferenceInterface;
+class BaseChannelMessagesInterface;
+class BaseChannelRoomConfigInterface;
+class BaseChannelRoomInterface;
+class BaseChannelRoomListType;
+class BaseChannelSASLAuthenticationInterface;
+class BaseChannelSMSInterface;
+class BaseChannelSecurableInterface;
+class BaseChannelServerAuthenticationType;
+class BaseChannelSplittableInterface;
+class BaseChannelTextType;
class BaseConnection;
-class BaseConnectionRequestsInterface;
-class BaseConnectionContactsInterface;
-class BaseConnectionSimplePresenceInterface;
-class BaseConnectionContactListInterface;
-class BaseConnectionContactGroupsInterface;
-class BaseConnectionContactInfoInterface;
class BaseConnectionAddressingInterface;
class BaseConnectionAliasingInterface;
class BaseConnectionAvatarsInterface;
class BaseConnectionClientTypesInterface;
class BaseConnectionContactCapabilitiesInterface;
+class BaseConnectionContactGroupsInterface;
+class BaseConnectionContactInfoInterface;
+class BaseConnectionContactListInterface;
+class BaseConnectionContactsInterface;
class BaseConnectionManager;
+class BaseConnectionRequestsInterface;
+class BaseConnectionSimplePresenceInterface;
class BaseProtocol;
class BaseProtocolAddressingInterface;
class BaseProtocolAvatarsInterface;
class BaseProtocolPresenceInterface;
-class BaseChannel;
-class BaseChannelTextType;
-class BaseChannelCallType;
-class BaseChannelMessagesInterface;
-class BaseChannelFileTransferType;
-class BaseChannelRoomListType;
-class BaseChannelServerAuthenticationType;
-class BaseChannelSASLAuthenticationInterface;
-class BaseChannelCaptchaAuthenticationInterface;
-class BaseChannelSecurableInterface;
-class BaseChannelChatStateInterface;
-class BaseChannelGroupInterface;
-class BaseChannelRoomInterface;
-class BaseChannelRoomConfigInterface;
-class BaseChannelHoldInterface;
-class BaseChannelMergeableConferenceInterface;
-class BaseChannelSplittableInterface;
-class BaseChannelSMSInterface;
-class BaseChannelConferenceInterface;
class DBusService;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
-typedef SharedPtr<AbstractProtocolInterface> AbstractProtocolInterfacePtr;
typedef SharedPtr<AbstractCallContentInterface> AbstractCallContentInterfacePtr;
-typedef SharedPtr<AbstractConnectionInterface> AbstractConnectionInterfacePtr;
typedef SharedPtr<AbstractChannelInterface> AbstractChannelInterfacePtr;
+typedef SharedPtr<AbstractConnectionInterface> AbstractConnectionInterfacePtr;
+typedef SharedPtr<AbstractProtocolInterface> AbstractProtocolInterfacePtr;
typedef SharedPtr<BaseCallContent> BaseCallContentPtr;
typedef SharedPtr<BaseCallContentDTMFInterface> BaseCallContentDTMFInterfacePtr;
typedef SharedPtr<BaseCallMuteInterface> BaseCallMuteInterfacePtr;
+typedef SharedPtr<BaseChannel> BaseChannelPtr;
+typedef SharedPtr<BaseChannelCallType> BaseChannelCallTypePtr;
+typedef SharedPtr<BaseChannelCaptchaAuthenticationInterface> BaseChannelCaptchaAuthenticationInterfacePtr;
+typedef SharedPtr<BaseChannelChatStateInterface> BaseChannelChatStateInterfacePtr;
+typedef SharedPtr<BaseChannelConferenceInterface> BaseChannelConferenceInterfacePtr;
+typedef SharedPtr<BaseChannelFileTransferType> BaseChannelFileTransferTypePtr;
+typedef SharedPtr<BaseChannelGroupInterface> BaseChannelGroupInterfacePtr;
+typedef SharedPtr<BaseChannelHoldInterface> BaseChannelHoldInterfacePtr;
+typedef SharedPtr<BaseChannelMergeableConferenceInterface> BaseChannelMergeableConferenceInterfacePtr;
+typedef SharedPtr<BaseChannelMessagesInterface> BaseChannelMessagesInterfacePtr;
+typedef SharedPtr<BaseChannelRoomConfigInterface> BaseChannelRoomConfigInterfacePtr;
+typedef SharedPtr<BaseChannelRoomInterface> BaseChannelRoomInterfacePtr;
+typedef SharedPtr<BaseChannelRoomListType> BaseChannelRoomListTypePtr;
+typedef SharedPtr<BaseChannelSASLAuthenticationInterface> BaseChannelSASLAuthenticationInterfacePtr;
+typedef SharedPtr<BaseChannelSMSInterface> BaseChannelSMSInterfacePtr;
+typedef SharedPtr<BaseChannelSecurableInterface> BaseChannelSecurableInterfacePtr;
+typedef SharedPtr<BaseChannelServerAuthenticationType> BaseChannelServerAuthenticationTypePtr;
+typedef SharedPtr<BaseChannelSplittableInterface> BaseChannelSplittableInterfacePtr;
+typedef SharedPtr<BaseChannelTextType> BaseChannelTextTypePtr;
typedef SharedPtr<BaseConnection> BaseConnectionPtr;
-typedef SharedPtr<BaseConnectionRequestsInterface> BaseConnectionRequestsInterfacePtr;
-typedef SharedPtr<BaseConnectionContactsInterface> BaseConnectionContactsInterfacePtr;
-typedef SharedPtr<BaseConnectionSimplePresenceInterface> BaseConnectionSimplePresenceInterfacePtr;
-typedef SharedPtr<BaseConnectionContactListInterface> BaseConnectionContactListInterfacePtr;
-typedef SharedPtr<BaseConnectionContactGroupsInterface> BaseConnectionContactGroupsInterfacePtr;
-typedef SharedPtr<BaseConnectionContactInfoInterface> BaseConnectionContactInfoInterfacePtr;
typedef SharedPtr<BaseConnectionAddressingInterface> BaseConnectionAddressingInterfacePtr;
typedef SharedPtr<BaseConnectionAliasingInterface> BaseConnectionAliasingInterfacePtr;
typedef SharedPtr<BaseConnectionAvatarsInterface> BaseConnectionAvatarsInterfacePtr;
typedef SharedPtr<BaseConnectionClientTypesInterface> BaseConnectionClientTypesInterfacePtr;
typedef SharedPtr<BaseConnectionContactCapabilitiesInterface> BaseConnectionContactCapabilitiesInterfacePtr;
+typedef SharedPtr<BaseConnectionContactGroupsInterface> BaseConnectionContactGroupsInterfacePtr;
+typedef SharedPtr<BaseConnectionContactInfoInterface> BaseConnectionContactInfoInterfacePtr;
+typedef SharedPtr<BaseConnectionContactListInterface> BaseConnectionContactListInterfacePtr;
+typedef SharedPtr<BaseConnectionContactsInterface> BaseConnectionContactsInterfacePtr;
typedef SharedPtr<BaseConnectionManager> BaseConnectionManagerPtr;
+typedef SharedPtr<BaseConnectionRequestsInterface> BaseConnectionRequestsInterfacePtr;
+typedef SharedPtr<BaseConnectionSimplePresenceInterface> BaseConnectionSimplePresenceInterfacePtr;
typedef SharedPtr<BaseProtocol> BaseProtocolPtr;
typedef SharedPtr<BaseProtocolAddressingInterface> BaseProtocolAddressingInterfacePtr;
typedef SharedPtr<BaseProtocolAvatarsInterface> BaseProtocolAvatarsInterfacePtr;
typedef SharedPtr<BaseProtocolPresenceInterface> BaseProtocolPresenceInterfacePtr;
-typedef SharedPtr<BaseChannel> BaseChannelPtr;
-typedef SharedPtr<BaseChannelCallType> BaseChannelCallTypePtr;
-typedef SharedPtr<BaseChannelTextType> BaseChannelTextTypePtr;
-typedef SharedPtr<BaseChannelMessagesInterface> BaseChannelMessagesInterfacePtr;
-typedef SharedPtr<BaseChannelFileTransferType> BaseChannelFileTransferTypePtr;
-typedef SharedPtr<BaseChannelRoomListType> BaseChannelRoomListTypePtr;
-typedef SharedPtr<BaseChannelServerAuthenticationType> BaseChannelServerAuthenticationTypePtr;
-typedef SharedPtr<BaseChannelSASLAuthenticationInterface> BaseChannelSASLAuthenticationInterfacePtr;
-typedef SharedPtr<BaseChannelCaptchaAuthenticationInterface> BaseChannelCaptchaAuthenticationInterfacePtr;
-typedef SharedPtr<BaseChannelSecurableInterface> BaseChannelSecurableInterfacePtr;
-typedef SharedPtr<BaseChannelChatStateInterface> BaseChannelChatStateInterfacePtr;
-typedef SharedPtr<BaseChannelGroupInterface> BaseChannelGroupInterfacePtr;
-typedef SharedPtr<BaseChannelRoomInterface> BaseChannelRoomInterfacePtr;
-typedef SharedPtr<BaseChannelRoomConfigInterface> BaseChannelRoomConfigInterfacePtr;
-typedef SharedPtr<BaseChannelHoldInterface> BaseChannelHoldInterfacePtr;
-typedef SharedPtr<BaseChannelMergeableConferenceInterface> BaseChannelMergeableConferenceInterfacePtr;
-typedef SharedPtr<BaseChannelSplittableInterface> BaseChannelSplittableInterfacePtr;
-typedef SharedPtr<BaseChannelSMSInterface> BaseChannelSMSInterfacePtr;
-typedef SharedPtr<BaseChannelConferenceInterface> BaseChannelConferenceInterfacePtr;
typedef SharedPtr<DBusService> DBusServicePtr;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */