bump product version to 5.0.4.1
[LibreOffice.git] / cui / source / options / sdbcdriverenum.hxx
blob5d75b2a191ef8993895b22f8b54c35f4c748e448
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 #ifndef INCLUDED_CUI_SOURCE_OPTIONS_SDBCDRIVERENUM_HXX
21 #define INCLUDED_CUI_SOURCE_OPTIONS_SDBCDRIVERENUM_HXX
24 #include <sal/types.h>
25 #include <rtl/ustring.hxx>
27 #include <vector>
30 namespace offapp
33 class ODriverEnumerationImpl;
34 /** simple class for accessing SDBC drivers registered within the office
35 <p>Rather small, introduced to not contaminate other instances with the
36 exception handling (code-size-bloating) implementations here.
37 </p>
39 class ODriverEnumeration
41 private:
42 ODriverEnumerationImpl* m_pImpl;
44 public:
45 ODriverEnumeration() throw();
46 ~ODriverEnumeration() throw();
47 typedef ::std::vector< OUString >::const_iterator const_iterator;
49 const_iterator begin() const throw();
50 const_iterator end() const throw();
54 } // namespace offapp
57 #endif // INCLUDED_CUI_SOURCE_OPTIONS_SDBCDRIVERENUM_HXX
60 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */