bump product version to 7.2.5.1
[LibreOffice.git] / connectivity / source / drivers / firebird / Columns.cxx
blob200eec1fb57d6c4e05fd0b7bb5fbd87042d3cb11
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include "Columns.hxx"
11 #include "Column.hxx"
13 using namespace ::connectivity;
14 using namespace ::connectivity::firebird;
15 using namespace ::connectivity::sdbcx;
17 using namespace ::cppu;
18 using namespace ::osl;
20 using namespace ::com::sun::star;
21 using namespace ::com::sun::star::sdbc;
22 using namespace ::com::sun::star::uno;
24 Columns::Columns(Table& rTable,
25 Mutex& rMutex,
26 const ::std::vector< OUString>& rVector):
27 OColumnsHelper(rTable,
28 true, // TODO: is this case sensitivity?
29 rMutex,
30 rVector,
31 /*bUseHardRef*/true)
33 OColumnsHelper::setParent(&rTable);
36 Reference< css::beans::XPropertySet > Columns::createDescriptor()
38 return new Column;
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */