summaryrefslogtreecommitdiffstats
path: root/sc/inc/dptabres.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-09 15:45:29 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-09 15:45:29 -0500
commitbef2d8a6f5a8d75f5b8721f1a3a068cabdd96b02 (patch)
tree020e994e505e3cd59c45256d74781d2c151f769b /sc/inc/dptabres.hxx
parentInclude dpglobal.hxx only when necessary. (diff)
downloadcore-bef2d8a6f5a8d75f5b8721f1a3a068cabdd96b02.tar.gz
core-bef2d8a6f5a8d75f5b8721f1a3a068cabdd96b02.zip
Cleaned up more header include silliness.
Diffstat (limited to 'sc/inc/dptabres.hxx')
-rw-r--r--sc/inc/dptabres.hxx13
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;