summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorAndrzej J.R. Hunt <andrzej@ahunt.org>2013-08-08 22:00:36 +0100
committerAndrzej J.R. Hunt <andrzej@ahunt.org>2013-08-11 16:05:10 +0100
commit73341eddbf3e42a121d80cada4d1252af80f5396 (patch)
treea536f36dd21ccc8499aeb5f460004ea2a0451746 /connectivity
parent464a0b50008e7b6824edc28d56685b8e4fd3d632 (diff)
Add sdbcx.Table (firebird-sdbc)
Change-Id: Iae9a4d1292d0dcd2da17c5a5552a3986b306a550
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/Library_firebird_sdbc.mk1
-rw-r--r--connectivity/source/drivers/firebird/Table.cxx12
-rw-r--r--connectivity/source/drivers/firebird/Table.hxx29
3 files changed, 42 insertions, 0 deletions
diff --git a/connectivity/Library_firebird_sdbc.mk b/connectivity/Library_firebird_sdbc.mk
index b00ba7bba539..0a36970b2fb8 100644
--- a/connectivity/Library_firebird_sdbc.mk
+++ b/connectivity/Library_firebird_sdbc.mk
@@ -47,6 +47,7 @@ $(eval $(call gb_Library_add_exception_objects,firebird_sdbc,\
connectivity/source/drivers/firebird/Services \
connectivity/source/drivers/firebird/Statement \
connectivity/source/drivers/firebird/StatementCommonBase \
+ connectivity/source/drivers/firebird/Table \
connectivity/source/drivers/firebird/Tables \
connectivity/source/drivers/firebird/Util \
))
diff --git a/connectivity/source/drivers/firebird/Table.cxx b/connectivity/source/drivers/firebird/Table.cxx
new file mode 100644
index 000000000000..c5576007b0db
--- /dev/null
+++ b/connectivity/source/drivers/firebird/Table.cxx
@@ -0,0 +1,12 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include "Table.hxx"
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file
diff --git a/connectivity/source/drivers/firebird/Table.hxx b/connectivity/source/drivers/firebird/Table.hxx
new file mode 100644
index 000000000000..b97a9fd88a1d
--- /dev/null
+++ b/connectivity/source/drivers/firebird/Table.hxx
@@ -0,0 +1,29 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef CONNECTIVITY_FIREBIRD_TABLE_HXX
+#define CONNECTIVITY_FIREBIRD_TABLE_HXX
+
+#include <connectivity/TTableHelper.hxx>
+
+namespace connectivity
+{
+ namespace firebird
+ {
+
+ class Table: public OTableHelper
+ {
+ };
+
+ } // namespace firebird
+} // namespace connectivity
+
+#endif // CONNECTIVITY_FIREBIRD_TABLE_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file