diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-06 17:08:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-06 17:21:16 +0100 |
commit | 6dce9c6757823b9e89863716ae70ff4e8ddd4e60 (patch) | |
tree | 0cb3d7c68223f595e59800ba4cec4456a3b17642 /binaryurp | |
parent | a73fb11cb235dd600d29f214f8a079792f6b2445 (diff) |
Add missing #includes
...and remove some unncessary using directives/declarations, in preparation of
removing now-unnecessary #includes from cppumaker-generated files, post
e57ca02849c3d87142ff5ff9099a212e72b8139c "Remove dynamic exception
specifications".
Change-Id: Iaf1f268871e2ee1d1c76cf90f03557527ebc9067
Diffstat (limited to 'binaryurp')
-rw-r--r-- | binaryurp/source/bridgefactory.cxx | 2 | ||||
-rw-r--r-- | binaryurp/source/incomingrequest.cxx | 1 | ||||
-rw-r--r-- | binaryurp/source/writer.cxx | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/binaryurp/source/bridgefactory.cxx b/binaryurp/source/bridgefactory.cxx index 7f2f02a05d57..3a4a99fd091e 100644 --- a/binaryurp/source/bridgefactory.cxx +++ b/binaryurp/source/bridgefactory.cxx @@ -23,7 +23,9 @@ #include <cassert> #include <exception> +#include "com/sun/star/bridge/BridgeExistsException.hpp" #include "com/sun/star/connection/XConnection.hpp" +#include "com/sun/star/lang/IllegalArgumentException.hpp" #include "com/sun/star/uno/Exception.hpp" #include "com/sun/star/uno/Reference.hxx" #include "com/sun/star/uno/RuntimeException.hpp" diff --git a/binaryurp/source/incomingrequest.cxx b/binaryurp/source/incomingrequest.cxx index a1c4ef39090f..96307bb23770 100644 --- a/binaryurp/source/incomingrequest.cxx +++ b/binaryurp/source/incomingrequest.cxx @@ -24,6 +24,7 @@ #include <vector> #include "com/sun/star/bridge/XInstanceProvider.hpp" +#include "com/sun/star/container/NoSuchElementException.hpp" #include "cppuhelper/exc_hlp.hxx" #include "o3tl/runtimetooustring.hxx" #include "rtl/byteseq.hxx" diff --git a/binaryurp/source/writer.cxx b/binaryurp/source/writer.cxx index e71418a9bd1d..e38495d0498c 100644 --- a/binaryurp/source/writer.cxx +++ b/binaryurp/source/writer.cxx @@ -27,6 +27,7 @@ #include <vector> #include "com/sun/star/connection/XConnection.hpp" +#include "com/sun/star/io/IOException.hpp" #include "com/sun/star/lang/WrappedTargetRuntimeException.hpp" #include "com/sun/star/uno/XCurrentContext.hpp" #include "cppuhelper/exc_hlp.hxx" |