summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/component/CPreparedStatement.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/component/CPreparedStatement.hxx')
-rw-r--r--connectivity/source/inc/component/CPreparedStatement.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/connectivity/source/inc/component/CPreparedStatement.hxx b/connectivity/source/inc/component/CPreparedStatement.hxx
index d39a3edad136..340a744ab9cc 100644
--- a/connectivity/source/inc/component/CPreparedStatement.hxx
+++ b/connectivity/source/inc/component/CPreparedStatement.hxx
@@ -22,17 +22,17 @@
#include <file/FPreparedStatement.hxx>
namespace connectivity::component
+{
+ class OConnection;
+ /// Prepared statement implementation for Writer tables and Calc sheets.
+ class OOO_DLLPUBLIC_FILE OComponentPreparedStatement : public file::OPreparedStatement
{
- class OConnection;
- /// Prepared statement implementation for Writer tables and Calc sheets.
- class OOO_DLLPUBLIC_FILE OComponentPreparedStatement : public file::OPreparedStatement
- {
- protected:
- virtual rtl::Reference<file::OResultSet> createResultSet() override;
- public:
- OComponentPreparedStatement( file::OConnection* _pConnection) : file::OPreparedStatement( _pConnection){}
- DECLARE_SERVICE_INFO();
- };
+ protected:
+ virtual rtl::Reference<file::OResultSet> createResultSet() override;
+ public:
+ OComponentPreparedStatement( file::OConnection* _pConnection) : file::OPreparedStatement( _pConnection){}
+ DECLARE_SERVICE_INFO();
+ };
}