summaryrefslogtreecommitdiff
path: root/sc/inc/queryparam.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/queryparam.hxx')
-rw-r--r--sc/inc/queryparam.hxx10
1 files changed, 9 insertions, 1 deletions
diff --git a/sc/inc/queryparam.hxx b/sc/inc/queryparam.hxx
index 77108abe97b5..27d121c19443 100644
--- a/sc/inc/queryparam.hxx
+++ b/sc/inc/queryparam.hxx
@@ -60,10 +60,18 @@ struct ScQueryParamBase
void FillInExcelSyntax(const rtl::OUString& aCellStr, SCSIZE nIndex);
protected:
+ typedef boost::ptr_vector<ScQueryEntry> EntriesType;
+
+public:
+ typedef EntriesType::const_iterator const_iterator;
+
+ const_iterator begin() const;
+ const_iterator end() const;
+
+protected:
ScQueryParamBase();
ScQueryParamBase(const ScQueryParamBase& r);
- typedef boost::ptr_vector<ScQueryEntry> EntriesType;
EntriesType maEntries;
};