xref: /aoo4110/main/ucb/source/ucp/file/filinl.hxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef _FILINL_HXX_
24 #define _FILINL_HXX_
25 
IsNative() const26 inline const sal_Bool& SAL_CALL shell::MyProperty::IsNative() const
27 {
28 	return isNative;
29 }
getHandle() const30 inline const sal_Int32& SAL_CALL shell::MyProperty::getHandle() const
31 {
32 	return Handle;
33 }
getType() const34 inline const com::sun::star::uno::Type& SAL_CALL shell::MyProperty::getType() const
35 {
36 	return Typ;
37 }
getValue() const38 inline const com::sun::star::uno::Any& SAL_CALL shell::MyProperty::getValue() const
39 {
40 	return Value;
41 }
getState() const42 inline const com::sun::star::beans::PropertyState& SAL_CALL shell::MyProperty::getState() const
43 {
44 	return State;
45 }
getAttributes() const46 inline const sal_Int16& SAL_CALL shell::MyProperty::getAttributes() const
47 {
48 	return Attributes;
49 }
setHandle(const sal_Int32 & __Handle) const50 inline void SAL_CALL shell::MyProperty::setHandle( const sal_Int32& __Handle ) const
51 {
52 	(( MyProperty* )this )->Handle = __Handle;
53 }
setType(const com::sun::star::uno::Type & __Typ) const54 inline void SAL_CALL shell::MyProperty::setType( const com::sun::star::uno::Type& __Typ ) const
55 {
56 	(( MyProperty* )this )->Typ = __Typ;
57 }
setValue(const com::sun::star::uno::Any & __Value) const58 inline void SAL_CALL shell::MyProperty::setValue( const com::sun::star::uno::Any& __Value ) const
59 {
60 	(( MyProperty* )this )->Value = __Value;
61 }
setState(const com::sun::star::beans::PropertyState & __State) const62 inline void SAL_CALL shell::MyProperty::setState( const com::sun::star::beans::PropertyState& __State ) const
63 {
64 	(( MyProperty* )this )->State = __State;
65 }
setAttributes(const sal_Int16 & __Attributes) const66 inline void SAL_CALL shell::MyProperty::setAttributes( const sal_Int16& __Attributes ) const
67 {
68 	(( MyProperty* )this )->Attributes = __Attributes;
69 }
70 
71 
72 #endif
73