Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / cui / source / options / connpoolsettings.cxx
blobf794f669f65911c462deebb46eace29c2b82799f
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
26 DriverPooling::DriverPooling( const OUString& _rName )
27 :sName(_rName)
28 ,bEnabled(false)
29 ,nTimeoutSeconds(120)
34 bool DriverPooling::operator == (const DriverPooling& _rR) const
36 return (sName == _rR.sName)
37 && (bEnabled == _rR.bEnabled)
38 && (nTimeoutSeconds == _rR.nTimeoutSeconds);
41 DriverPoolingSettings::DriverPoolingSettings()
46 DriverPoolingSettingsItem::DriverPoolingSettingsItem( sal_uInt16 _nId, const DriverPoolingSettings &_rSettings )
47 :SfxPoolItem(_nId)
48 ,m_aSettings(_rSettings)
53 bool DriverPoolingSettingsItem::operator==( const SfxPoolItem& _rCompare ) const
55 assert(SfxPoolItem::operator==(_rCompare));
56 const DriverPoolingSettingsItem* pItem = static_cast<const DriverPoolingSettingsItem*>( &_rCompare );
58 if (m_aSettings.size() != pItem->m_aSettings.size())
59 return false;
61 DriverPoolingSettings::const_iterator aForeign = pItem->m_aSettings.begin();
62 for (auto const& ownSetting : m_aSettings)
64 if (ownSetting != *aForeign)
65 return false;
67 ++aForeign;
70 return true;
74 SfxPoolItem* DriverPoolingSettingsItem::Clone( SfxItemPool * ) const
76 return new DriverPoolingSettingsItem(*this);
80 } // namespace offapp
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */