diff options
| author | Tobias Markmann <tm@ayena.de> | 2015-07-24 15:42:17 (GMT) |
|---|---|---|
| committer | Tobias Markmann <tm@ayena.de> | 2015-07-24 15:42:17 (GMT) |
| commit | 744884d4ed76658880a3d25f6e6551ef92700a8f (patch) | |
| tree | 5fd09d05a22a9d2f10ac937e402bd68a23fec4e2 /Swiften/Serializer/PayloadSerializers/StartSessionSerializer.h | |
| parent | 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 (diff) | |
| download | swift-744884d4ed76658880a3d25f6e6551ef92700a8f.zip swift-744884d4ed76658880a3d25f6e6551ef92700a8f.tar.bz2 | |
Add missing includes for dependencies in public header files
Added Swiften/Base/Concat.h to the exception list for <algorithm>
include, as Concat.h uses std::copy, defined in <algorithm>.
Added Swiften/FileTransfer/S5BTransportSession.h to the exception
list for <boost/bind.hpp> include, as S5BTransportSession.h
declares a template class using boost::bind.
Test-Information:
Tested that each of Swiften's public header files compiles on its
own.
Change-Id: Iac794b6e0f5959cd8261888a67761813b710fe85
Diffstat (limited to 'Swiften/Serializer/PayloadSerializers/StartSessionSerializer.h')
| -rw-r--r-- | Swiften/Serializer/PayloadSerializers/StartSessionSerializer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiften/Serializer/PayloadSerializers/StartSessionSerializer.h b/Swiften/Serializer/PayloadSerializers/StartSessionSerializer.h index d629db2..1815955 100644 --- a/Swiften/Serializer/PayloadSerializers/StartSessionSerializer.h +++ b/Swiften/Serializer/PayloadSerializers/StartSessionSerializer.h | |||
| @@ -7,12 +7,13 @@ | |||
| 7 | #pragma once | 7 | #pragma once |
| 8 | 8 | ||
| 9 | #include <boost/lexical_cast.hpp> | 9 | #include <boost/lexical_cast.hpp> |
| 10 | 10 | ||
| 11 | #include <Swiften/Base/API.h> | 11 | #include <Swiften/Base/API.h> |
| 12 | #include <Swiften/Serializer/GenericPayloadSerializer.h> | ||
| 13 | #include <Swiften/Elements/StartSession.h> | 12 | #include <Swiften/Elements/StartSession.h> |
| 13 | #include <Swiften/Serializer/GenericPayloadSerializer.h> | ||
| 14 | #include <Swiften/Serializer/XML/XMLElement.h> | ||
| 14 | 15 | ||
| 15 | namespace Swift { | 16 | namespace Swift { |
| 16 | class SWIFTEN_API StartSessionSerializer : public GenericPayloadSerializer<StartSession> { | 17 | class SWIFTEN_API StartSessionSerializer : public GenericPayloadSerializer<StartSession> { |
| 17 | public: | 18 | public: |
| 18 | StartSessionSerializer() : GenericPayloadSerializer<StartSession>() {} | 19 | StartSessionSerializer() : GenericPayloadSerializer<StartSession>() {} |
Swift