1*06594b87SAriel Constenla-Haile/**************************************************************
2*06594b87SAriel Constenla-Haile *
3*06594b87SAriel Constenla-Haile * Licensed to the Apache Software Foundation (ASF) under one
4*06594b87SAriel Constenla-Haile * or more contributor license agreements.  See the NOTICE file
5*06594b87SAriel Constenla-Haile * distributed with this work for additional information
6*06594b87SAriel Constenla-Haile * regarding copyright ownership.  The ASF licenses this file
7*06594b87SAriel Constenla-Haile * to you under the Apache License, Version 2.0 (the
8*06594b87SAriel Constenla-Haile * "License"); you may not use this file except in compliance
9*06594b87SAriel Constenla-Haile * with the License.  You may obtain a copy of the License at
10*06594b87SAriel Constenla-Haile *
11*06594b87SAriel Constenla-Haile *   http://www.apache.org/licenses/LICENSE-2.0
12*06594b87SAriel Constenla-Haile *
13*06594b87SAriel Constenla-Haile * Unless required by applicable law or agreed to in writing,
14*06594b87SAriel Constenla-Haile * software distributed under the License is distributed on an
15*06594b87SAriel Constenla-Haile * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*06594b87SAriel Constenla-Haile * KIND, either express or implied.  See the License for the
17*06594b87SAriel Constenla-Haile * specific language governing permissions and limitations
18*06594b87SAriel Constenla-Haile * under the License.
19*06594b87SAriel Constenla-Haile *
20*06594b87SAriel Constenla-Haile *************************************************************/
21*06594b87SAriel Constenla-Haile
22*06594b87SAriel Constenla-Haile#ifndef __com_sun_star_ucb_PropertyCommandArgument_idl__
23*06594b87SAriel Constenla-Haile#define __com_sun_star_ucb_PropertyCommandArgument_idl__
24*06594b87SAriel Constenla-Haile
25*06594b87SAriel Constenla-Haile#include <com/sun/star/beans/Property.idl>
26*06594b87SAriel Constenla-Haile
27*06594b87SAriel Constenla-Hailemodule com { module sun { module star { module ucb {
28*06594b87SAriel Constenla-Haile
29*06594b87SAriel Constenla-Haile/** The argument for the "addProperty" command.
30*06594b87SAriel Constenla-Haile
31*06594b87SAriel Constenla-Haile    @see XCommandProcessor
32*06594b87SAriel Constenla-Haile    @since Apache OpenOffice 4.0
33*06594b87SAriel Constenla-Haile*/
34*06594b87SAriel Constenla-Hailestruct PropertyCommandArgument
35*06594b87SAriel Constenla-Haile{
36*06594b87SAriel Constenla-Haile    /** The property that the command has to add.
37*06594b87SAriel Constenla-Haile     */
38*06594b87SAriel Constenla-Haile    com::sun::star::beans::Property Property;
39*06594b87SAriel Constenla-Haile
40*06594b87SAriel Constenla-Haile    /** The default value of the property.
41*06594b87SAriel Constenla-Haile    */
42*06594b87SAriel Constenla-Haile    any DefaultValue;
43*06594b87SAriel Constenla-Haile};
44*06594b87SAriel Constenla-Haile
45*06594b87SAriel Constenla-Haile}; }; }; };
46*06594b87SAriel Constenla-Haile
47*06594b87SAriel Constenla-Haile#endif
48