diff options
author | Gabor Kelemen <kelemen.gabor2@nisz.hu> | 2019-02-23 10:37:14 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-03-12 10:14:54 +0100 |
commit | 80aec8ef2a333890d46c4258f84af6b8f81832a8 (patch) | |
tree | 9dd5c01a6cefbac98b251663fc662ed796c6125a /include/connectivity/statementcomposer.hxx | |
parent | 86567ebde2d38c44aae93064b8c102f365641f81 (diff) |
tdf#42949 Fix IWYU warnings in include/connectivity/*
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.
Change-Id: I02f75be483529ba1f7a6e460e34c4752b4265221
Reviewed-on: https://gerrit.libreoffice.org/68893
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include/connectivity/statementcomposer.hxx')
-rw-r--r-- | include/connectivity/statementcomposer.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/connectivity/statementcomposer.hxx b/include/connectivity/statementcomposer.hxx index e94d95a1a11b..944a4321b12a 100644 --- a/include/connectivity/statementcomposer.hxx +++ b/include/connectivity/statementcomposer.hxx @@ -20,12 +20,15 @@ #ifndef INCLUDED_CONNECTIVITY_STATEMENTCOMPOSER_HXX #define INCLUDED_CONNECTIVITY_STATEMENTCOMPOSER_HXX -#include <com/sun/star/sdbc/XConnection.hpp> -#include <com/sun/star/sdb/XSingleSelectQueryComposer.hpp> +#include <rtl/ustring.hxx> #include <memory> #include <connectivity/dbtoolsdllapi.hxx> +namespace com::sun::star::sdbc { class XConnection; } +namespace com::sun::star::sdb { class XSingleSelectQueryComposer; } +namespace com::sun::star::uno { template <typename > class Reference; } + namespace dbtools { |