diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-09 15:45:29 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-09 15:45:29 -0500 |
commit | bef2d8a6f5a8d75f5b8721f1a3a068cabdd96b02 (patch) | |
tree | 020e994e505e3cd59c45256d74781d2c151f769b /sc/inc/dptabres.hxx | |
parent | 950f94c03a10977c0a5e08455bb49c192c3c6a36 (diff) |
Cleaned up more header include silliness.
Diffstat (limited to 'sc/inc/dptabres.hxx')
-rw-r--r-- | sc/inc/dptabres.hxx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sc/inc/dptabres.hxx b/sc/inc/dptabres.hxx index f5c10a21810d..80e77cca99c7 100644 --- a/sc/inc/dptabres.hxx +++ b/sc/inc/dptabres.hxx @@ -29,17 +29,20 @@ #ifndef SC_DPTABRES_HXX #define SC_DPTABRES_HXX +#include "global.hxx" +#include "dpcachetable.hxx" + #include <svl/svarray.hxx> #include <tools/string.hxx> #include <com/sun/star/sheet/MemberResult.hpp> #include <com/sun/star/sheet/DataResult.hpp> #include <com/sun/star/uno/Sequence.hxx> -#include "global.hxx" // enum ScSubTotalFunc -#include "dpcachetable.hxx" + #include <boost/unordered_map.hpp> #include <boost/unordered_set.hpp> #include <vector> #include <memory> +#include <map> namespace com { namespace sun { namespace star { namespace sheet { struct DataPilotFieldReference; @@ -499,9 +502,9 @@ typedef std::vector<ScDPDataMember*> ScDPDataMembers; class ScDPResultDimension { -public : - typedef std::vector <ScDPResultMember *> MemberArray; - typedef std::map < SCROW , ScDPResultMember *> MemberHash; +public: + typedef std::vector<ScDPResultMember*> MemberArray; + typedef std::map<SCROW, ScDPResultMember*> MemberHash; private: const ScDPResultData* pResultData; MemberArray maMemberArray; |