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