Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 : #include "User.hxx"
11 :
12 : using namespace ::connectivity;
13 : using namespace ::connectivity::firebird;
14 : using namespace ::connectivity::sdbcx;
15 :
16 : using namespace ::com::sun::star;
17 : using namespace ::com::sun::star::sdbc;
18 :
19 0 : User::User(const uno::Reference< XConnection >& rConnection):
20 0 : OUser(true) // Case Sensitive
21 : {
22 : (void) rConnection;
23 0 : }
24 :
25 0 : User::User(const uno::Reference< XConnection >& rConnection, const OUString& rName):
26 : OUser(rName,
27 0 : true) // Case Sensitive
28 : {
29 : (void) rConnection;
30 0 : }
31 :
32 : //----- IRefreshableGroups ----------------------------------------------------
33 0 : void User::refreshGroups()
34 : {
35 : // TODO: implement.
36 0 : }
|