106594b87SAriel Constenla-Haile/************************************************************** 206594b87SAriel Constenla-Haile * 306594b87SAriel Constenla-Haile * Licensed to the Apache Software Foundation (ASF) under one 406594b87SAriel Constenla-Haile * or more contributor license agreements. See the NOTICE file 506594b87SAriel Constenla-Haile * distributed with this work for additional information 606594b87SAriel Constenla-Haile * regarding copyright ownership. The ASF licenses this file 706594b87SAriel Constenla-Haile * to you under the Apache License, Version 2.0 (the 806594b87SAriel Constenla-Haile * "License"); you may not use this file except in compliance 906594b87SAriel Constenla-Haile * with the License. You may obtain a copy of the License at 1006594b87SAriel Constenla-Haile * 1106594b87SAriel Constenla-Haile * http://www.apache.org/licenses/LICENSE-2.0 1206594b87SAriel Constenla-Haile * 1306594b87SAriel Constenla-Haile * Unless required by applicable law or agreed to in writing, 1406594b87SAriel Constenla-Haile * software distributed under the License is distributed on an 1506594b87SAriel Constenla-Haile * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 1606594b87SAriel Constenla-Haile * KIND, either express or implied. See the License for the 1706594b87SAriel Constenla-Haile * specific language governing permissions and limitations 1806594b87SAriel Constenla-Haile * under the License. 1906594b87SAriel Constenla-Haile * 2006594b87SAriel Constenla-Haile *************************************************************/ 2106594b87SAriel Constenla-Haile 2206594b87SAriel Constenla-Haile#ifndef __com_sun_star_ucb_PropertyCommandArgument_idl__ 2306594b87SAriel Constenla-Haile#define __com_sun_star_ucb_PropertyCommandArgument_idl__ 2406594b87SAriel Constenla-Haile 2506594b87SAriel Constenla-Haile#include <com/sun/star/beans/Property.idl> 2606594b87SAriel Constenla-Haile 2706594b87SAriel Constenla-Hailemodule com { module sun { module star { module ucb { 2806594b87SAriel Constenla-Haile 2906594b87SAriel Constenla-Haile/** The argument for the "addProperty" command. 3006594b87SAriel Constenla-Haile 3106594b87SAriel Constenla-Haile @see XCommandProcessor 32*34c958abSJürgen Schmidt @since OpenOffice 4.0 3306594b87SAriel Constenla-Haile*/ 3406594b87SAriel Constenla-Hailestruct PropertyCommandArgument 3506594b87SAriel Constenla-Haile{ 3606594b87SAriel Constenla-Haile /** The property that the command has to add. 3706594b87SAriel Constenla-Haile */ 3806594b87SAriel Constenla-Haile com::sun::star::beans::Property Property; 3906594b87SAriel Constenla-Haile 4006594b87SAriel Constenla-Haile /** The default value of the property. 4106594b87SAriel Constenla-Haile */ 4206594b87SAriel Constenla-Haile any DefaultValue; 4306594b87SAriel Constenla-Haile}; 4406594b87SAriel Constenla-Haile 4506594b87SAriel Constenla-Haile}; }; }; }; 4606594b87SAriel Constenla-Haile 4706594b87SAriel Constenla-Haile#endif 48