LibreOffice Module connectivity (master) 1
mysqlc_catalog.hxx
Go to the documentation of this file.
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.
4 *
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 */
9
10#pragma once
11
12#include <sdbcx/VCatalog.hxx>
13
15{
17{
18 css::uno::Reference<css::sdbc::XConnection> m_xConnection;
19
20public:
21 explicit Catalog(const css::uno::Reference<css::sdbc::XConnection>& rConnection);
22
23 // OCatalog
24 virtual void refreshTables() override;
25 virtual void refreshViews() override;
26
27 // IRefreshableGroups
28 virtual void refreshGroups() override;
29
30 // IRefreshableUsers
31 virtual void refreshUsers() override;
32
34};
35
36} // namespace connectivity::mysqlc
37
38/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
virtual void refreshViews() override
css::uno::Reference< css::sdbc::XConnection > m_xConnection
virtual void refreshTables() override
Catalog(const css::uno::Reference< css::sdbc::XConnection > &rConnection)
virtual void refreshGroups() override
virtual void refreshUsers() override
sdbcx::OCollection * getPrivateTables() const
std::unique_ptr< OCollection > m_pTables
Definition: VCatalog.hxx:64