bump product version to 5.0.4.1
[LibreOffice.git] / sfx2 / source / inc / ctrlfactoryimpl.hxx
blob81feb31a8ef6f8ba837f409c0363edf488b16a54
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_SFX2_CTRLFACTORYIMPL_HXX
21 #define INCLUDED_SFX2_CTRLFACTORYIMPL_HXX
23 #include <sfx2/mnuitem.hxx>
24 #include <sfx2/stbitem.hxx>
25 #include <sfx2/tbxctrl.hxx>
27 #include <boost/ptr_container/ptr_vector.hpp>
29 class SfxMenuCtrlFactArr_Impl
31 typedef boost::ptr_vector<SfxMenuCtrlFactory> DataType;
32 DataType maData;
34 public:
35 const SfxMenuCtrlFactory& operator []( size_t i ) const;
36 SfxMenuCtrlFactory& operator []( size_t i );
38 void push_back( SfxMenuCtrlFactory* p );
40 size_t size() const;
43 class SfxStbCtrlFactArr_Impl
45 typedef boost::ptr_vector<SfxStbCtrlFactory> DataType;
46 DataType maData;
48 public:
49 const SfxStbCtrlFactory& operator []( size_t i ) const;
50 SfxStbCtrlFactory& operator []( size_t i );
52 void push_back( SfxStbCtrlFactory* p );
54 size_t size() const;
57 class SfxTbxCtrlFactArr_Impl
59 typedef boost::ptr_vector<SfxTbxCtrlFactory> DataType;
60 DataType maData;
62 public:
63 const SfxTbxCtrlFactory& operator []( size_t i ) const;
64 SfxTbxCtrlFactory& operator []( size_t i );
66 void push_back( SfxTbxCtrlFactory* p );
68 size_t size() const;
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */