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 24 #include "precompiled_sd.hxx" 25 26 #include "UpdateRequest.hxx" 27 28 #include "framework/FrameworkHelper.hxx" 29 30 using namespace ::com::sun::star; 31 using namespace ::com::sun::star::uno; 32 using namespace ::com::sun::star::drawing::framework; 33 34 using ::rtl::OUString; 35 36 namespace sd { namespace framework { 37 UpdateRequest(void)38UpdateRequest::UpdateRequest (void) 39 throw() 40 : UpdateRequestInterfaceBase(MutexOwner::maMutex) 41 { 42 } 43 44 45 46 ~UpdateRequest(void)47UpdateRequest::~UpdateRequest (void) throw() 48 { 49 } 50 51 52 53 execute(const Reference<XConfiguration> & rxConfiguration)54void SAL_CALL UpdateRequest::execute (const Reference<XConfiguration>& rxConfiguration) 55 throw (RuntimeException) 56 { 57 (void)rxConfiguration; 58 // Do nothing here. The configuration is updated when the request queue 59 // becomes empty. 60 } 61 62 63 64 getName(void)65OUString SAL_CALL UpdateRequest::getName (void) 66 throw (RuntimeException) 67 { 68 return OUString::createFromAscii("UpdateRequest"); 69 } 70 71 72 73 setName(const OUString & rsName)74void SAL_CALL UpdateRequest::setName (const OUString& rsName) 75 throw (RuntimeException) 76 { 77 (void)rsName; 78 // Ignored. 79 } 80 81 } } // end of namespace sd::framework 82 83