Bump version to 4.3-4
[LibreOffice.git] / cui / source / options / connpoolsettings.cxx
blob639ee0e804b8de898724f9b1c55f31138df10db2
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "connpoolsettings.hxx"
23 namespace offapp
28 //= DriverPooling
31 DriverPooling::DriverPooling( const OUString& _rName, bool _bEnabled, const sal_Int32 _nTimeout )
32 :sName(_rName)
33 ,bEnabled(_bEnabled)
34 ,nTimeoutSeconds(_nTimeout)
39 bool DriverPooling::operator == (const DriverPooling& _rR) const
41 return (sName == _rR.sName)
42 && (bEnabled == _rR.bEnabled)
43 && (nTimeoutSeconds == _rR.nTimeoutSeconds);
47 //= DriverPoolingSettings
50 DriverPoolingSettings::DriverPoolingSettings()
55 //= DriverPoolingSettingsItem
57 TYPEINIT1( DriverPoolingSettingsItem, SfxPoolItem )
59 DriverPoolingSettingsItem::DriverPoolingSettingsItem( sal_uInt16 _nId, const DriverPoolingSettings &_rSettings )
60 :SfxPoolItem(_nId)
61 ,m_aSettings(_rSettings)
66 bool DriverPoolingSettingsItem::operator==( const SfxPoolItem& _rCompare ) const
68 const DriverPoolingSettingsItem* pItem = PTR_CAST(DriverPoolingSettingsItem, &_rCompare);
69 if (!pItem)
70 return false;
72 if (m_aSettings.size() != pItem->m_aSettings.size())
73 return false;
75 DriverPoolingSettings::const_iterator aOwn = m_aSettings.begin();
76 DriverPoolingSettings::const_iterator aOwnEnd = m_aSettings.end();
77 DriverPoolingSettings::const_iterator aForeign = pItem->m_aSettings.begin();
78 while (aOwn < aOwnEnd)
80 if (*aOwn != *aForeign)
81 return false;
83 ++aForeign;
84 ++aOwn;
87 return true;
91 SfxPoolItem* DriverPoolingSettingsItem::Clone( SfxItemPool * ) const
93 return new DriverPoolingSettingsItem(Which(), m_aSettings);
99 } // namespace offapp
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */