diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-09 17:18:57 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-01-28 18:52:22 +0100 |
commit | b2c89e7236d71d92a96430db0a7eca14b41c227a (patch) | |
tree | 632a5874b1213649771af1ac2333442885fdd83c /framework/inc | |
parent | 54f606c666c6d9e642090074d9d2aa4b6a3bec22 (diff) |
fwk: Constructor feature for one instance UICategoryDescription.
Change-Id: I56c906c9eeafb625dee65eec9fe39ea3aee66251
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/uiconfiguration/uicategorydescription.hxx | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/framework/inc/uiconfiguration/uicategorydescription.hxx b/framework/inc/uiconfiguration/uicategorydescription.hxx deleted file mode 100644 index e3b9d6a8519a..000000000000 --- a/framework/inc/uiconfiguration/uicategorydescription.hxx +++ /dev/null @@ -1,58 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef INCLUDED_FRAMEWORK_INC_UICONFIGURATION_UICATEGORYDESCRIPTION_HXX -#define INCLUDED_FRAMEWORK_INC_UICONFIGURATION_UICATEGORYDESCRIPTION_HXX - -/** Attention: stl headers must(!) be included at first. Otherwise it can make trouble - with solaris headers ... -*/ -#include <vector> -#include <list> -#include <boost/unordered_map.hpp> - -#include <threadhelp/threadhelpbase.hxx> -#include <macros/generic.hxx> -#include <macros/xserviceinfo.hxx> -#include <uielement/uicommanddescription.hxx> -#include <stdtypes.h> - -#include <com/sun/star/lang/XServiceInfo.hpp> -#include <com/sun/star/lang/XTypeProvider.hpp> -#include <com/sun/star/container/XNameAccess.hpp> -#include <com/sun/star/frame/XModuleManager.hpp> - -namespace framework -{ -class UICategoryDescription : public UICommandDescription -{ - public: - UICategoryDescription( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext ); - virtual ~UICategoryDescription(); - - DECLARE_XSERVICEINFO - private: - virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > impl_createConfigAccess(const OUString& _sName); -}; - -} // namespace framework - -#endif // __FRAMEWORK_SERVICES_UICOMMANDCATEGORY_HXX_ - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |