diff options
author | Jorenz Paragas <j.paragas.237@gmail.com> | 2016-06-16 18:59:35 -0700 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-21 07:58:59 +0000 |
commit | 8a6bffd2fefcc81dc34951ba2e178d9938b59fb3 (patch) | |
tree | dfe32bb6c0a7ed8d5f462f3c557c42bd01232e74 /include/formula/IFunctionDescription.hxx | |
parent | 6efa9c8e87bbc49ff558cf5e9017628cc4312f6e (diff) |
tdf#42949: clean up includes in include/formula with iwyu
Change-Id: Ieb601d98be80aeb2239d4f0a330d90e63f1abc43
Reviewed-on: https://gerrit.libreoffice.org/26398
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/formula/IFunctionDescription.hxx')
-rw-r--r-- | include/formula/IFunctionDescription.hxx | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/include/formula/IFunctionDescription.hxx b/include/formula/IFunctionDescription.hxx index 42aaa9924067..40820ebbe040 100644 --- a/include/formula/IFunctionDescription.hxx +++ b/include/formula/IFunctionDescription.hxx @@ -20,15 +20,21 @@ #ifndef INCLUDED_FORMULA_IFUNCTIONDESCRIPTION_HXX #define INCLUDED_FORMULA_IFUNCTIONDESCRIPTION_HXX -#include <vector> #include <memory> -#include <formula/formuladllapi.h> +#include <vector> + +#include <com/sun/star/table/CellAddress.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/Sequence.hxx> +#include <rtl/string.hxx> #include <rtl/ustring.hxx> -#include <tools/solar.h> -#include <com/sun/star/sheet/XFormulaParser.hpp> -#include <com/sun/star/sheet/XFormulaOpCodeMapper.hpp> +#include <sal/types.h> -class SvTreeListEntry; +namespace com { namespace sun { namespace star { + namespace sheet { struct FormulaToken; } + namespace sheet { class XFormulaOpCodeMapper; } + namespace sheet { class XFormulaParser; } +} } } namespace formula { |