summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/file/fanalyzer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/file/fanalyzer.hxx')
-rwxr-xr-x[-rw-r--r--]connectivity/source/inc/file/fanalyzer.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/connectivity/source/inc/file/fanalyzer.hxx b/connectivity/source/inc/file/fanalyzer.hxx
index 96f815a5cc0d..386807c05391 100644..100755
--- a/connectivity/source/inc/file/fanalyzer.hxx
+++ b/connectivity/source/inc/file/fanalyzer.hxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -39,11 +40,11 @@ namespace connectivity
class OOO_DLLPUBLIC_FILE OSQLAnalyzer
{
typedef ::std::list<OEvaluateSet*> OEvaluateSetList;
- typedef ::std::pair< ::vos::ORef<OPredicateCompiler>,::vos::ORef<OPredicateInterpreter> > TPredicates;
+ typedef ::std::pair< ::rtl::Reference<OPredicateCompiler>,::rtl::Reference<OPredicateInterpreter> > TPredicates;
::std::vector< TPredicates > m_aSelectionEvaluations;
- ::vos::ORef<OPredicateCompiler> m_aCompiler;
- ::vos::ORef<OPredicateInterpreter> m_aInterpreter;
+ ::rtl::Reference<OPredicateCompiler> m_aCompiler;
+ ::rtl::Reference<OPredicateInterpreter> m_aInterpreter;
OConnection* m_pConnection;
mutable sal_Bool m_bHasSelectionCode;
@@ -64,7 +65,7 @@ namespace connectivity
{ }
OConnection* getConnection() const { return m_pConnection; }
- void describeParam(::vos::ORef<OSQLColumns> rParameterColumns); // genauere Beschreibung der Parameter
+ void describeParam(::rtl::Reference<OSQLColumns> rParameterColumns); // genauere Beschreibung der Parameter
::std::vector<sal_Int32>* bindEvaluationRow(OValueRefRow& _pRow); // Anbinden einer Ergebniszeile an die Restrictions
/** bind the select columns if they contain a function which needs a row value
@param _pRow the result row
@@ -94,3 +95,4 @@ namespace connectivity
}
#endif // _CONNECTIVITY_FILE_FANALYZER_HXX_
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */