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 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "connpoolsettings.hxx"
21 :
22 : //........................................................................
23 : namespace offapp
24 : {
25 : //........................................................................
26 :
27 : //====================================================================
28 : //= DriverPooling
29 : //====================================================================
30 : //--------------------------------------------------------------------
31 0 : DriverPooling::DriverPooling( const String& _rName, sal_Bool _bEnabled, const sal_Int32 _nTimeout )
32 : :sName(_rName)
33 : ,bEnabled(_bEnabled)
34 0 : ,nTimeoutSeconds(_nTimeout)
35 : {
36 0 : }
37 :
38 : //--------------------------------------------------------------------
39 0 : sal_Bool DriverPooling::operator == (const DriverPooling& _rR) const
40 : {
41 0 : return (sName == _rR.sName)
42 : && (bEnabled == _rR.bEnabled)
43 0 : && (nTimeoutSeconds == _rR.nTimeoutSeconds);
44 : }
45 :
46 : //====================================================================
47 : //= DriverPoolingSettings
48 : //====================================================================
49 : //--------------------------------------------------------------------
50 0 : DriverPoolingSettings::DriverPoolingSettings()
51 : {
52 0 : }
53 :
54 : //====================================================================
55 : //= DriverPoolingSettingsItem
56 : //====================================================================
57 0 : TYPEINIT1( DriverPoolingSettingsItem, SfxPoolItem )
58 : //--------------------------------------------------------------------
59 0 : DriverPoolingSettingsItem::DriverPoolingSettingsItem( sal_uInt16 _nId, const DriverPoolingSettings &_rSettings )
60 : :SfxPoolItem(_nId)
61 0 : ,m_aSettings(_rSettings)
62 : {
63 0 : }
64 :
65 : //--------------------------------------------------------------------
66 0 : int DriverPoolingSettingsItem::operator==( const SfxPoolItem& _rCompare ) const
67 : {
68 0 : const DriverPoolingSettingsItem* pItem = PTR_CAST(DriverPoolingSettingsItem, &_rCompare);
69 0 : if (!pItem)
70 0 : return sal_False;
71 :
72 0 : if (m_aSettings.size() != pItem->m_aSettings.size())
73 0 : return sal_False;
74 :
75 0 : DriverPoolingSettings::const_iterator aOwn = m_aSettings.begin();
76 0 : DriverPoolingSettings::const_iterator aOwnEnd = m_aSettings.end();
77 0 : DriverPoolingSettings::const_iterator aForeign = pItem->m_aSettings.begin();
78 0 : while (aOwn < aOwnEnd)
79 : {
80 0 : if (*aOwn != *aForeign)
81 0 : return sal_False;
82 :
83 0 : ++aForeign;
84 0 : ++aOwn;
85 : }
86 :
87 0 : return sal_True;
88 : }
89 :
90 : //--------------------------------------------------------------------
91 0 : SfxPoolItem* DriverPoolingSettingsItem::Clone( SfxItemPool * ) const
92 : {
93 0 : return new DriverPoolingSettingsItem(Which(), m_aSettings);
94 : }
95 :
96 : //--------------------------------------------------------------------
97 :
98 : //........................................................................
99 : } // namespace offapp
100 : //........................................................................
101 :
102 :
103 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|