Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <svl/svdde.hxx>
21 : #include <rtl/instance.hxx>
22 :
23 0 : DdeData::DdeData()
24 0 : : pImp(NULL)
25 : {
26 0 : }
27 :
28 0 : DdeData::DdeData( const OUString& )
29 0 : : pImp(NULL)
30 : {
31 0 : }
32 :
33 0 : DdeData::DdeData( const DdeData& )
34 0 : : pImp(NULL)
35 : {
36 0 : }
37 :
38 0 : DdeData::DdeData( const void*, long, SotClipboardFormatId)
39 0 : : pImp(NULL)
40 : {
41 0 : }
42 :
43 0 : DdeData::~DdeData()
44 : {
45 0 : }
46 :
47 0 : void DdeData::SetFormat( SAL_UNUSED_PARAMETER SotClipboardFormatId )
48 : {
49 0 : }
50 :
51 0 : SotClipboardFormatId DdeData::GetFormat() const
52 : {
53 0 : return SotClipboardFormatId::NONE;
54 : }
55 :
56 0 : DdeData& DdeData::operator = ( const DdeData& )
57 : {
58 0 : return *this;
59 : }
60 :
61 0 : DdeData::operator long() const
62 : {
63 0 : return 0L;
64 : }
65 :
66 0 : DdeData::operator const void*() const
67 : {
68 0 : return NULL;
69 : }
70 :
71 0 : long DdeConnection::GetError()
72 : {
73 0 : return 0L;
74 : }
75 :
76 0 : DdeConnection::DdeConnection( const OUString&, const OUString& )
77 : : pService(NULL)
78 : , pTopic(NULL)
79 0 : , pImp(NULL)
80 : {
81 0 : }
82 :
83 0 : DdeConnection::~DdeConnection()
84 : {
85 0 : }
86 :
87 0 : const OUString DdeConnection::GetServiceName()
88 : {
89 0 : return OUString();
90 : }
91 :
92 0 : const OUString DdeConnection::GetTopicName()
93 : {
94 0 : return OUString();;
95 : }
96 :
97 0 : DdeTransaction::DdeTransaction( DdeConnection& rConnection, const OUString&, long )
98 : : rDde(rConnection)
99 : , pName(NULL)
100 : , nType(0)
101 : , nId(0)
102 : , nTime(0)
103 0 : , bBusy(false)
104 : {
105 0 : }
106 :
107 0 : void DdeTransaction::Execute()
108 : {
109 0 : }
110 :
111 0 : void DdeTransaction::Done( SAL_UNUSED_PARAMETER bool )
112 : {
113 0 : }
114 :
115 0 : void DdeTransaction::Data( SAL_UNUSED_PARAMETER const DdeData* )
116 : {
117 0 : }
118 :
119 0 : DdeTransaction::~DdeTransaction()
120 : {
121 0 : }
122 :
123 0 : DdeRequest::DdeRequest( DdeConnection& rConnection, const OUString& rString, long lLong )
124 0 : : DdeTransaction( rConnection, rString, lLong )
125 : {
126 0 : }
127 :
128 0 : DdeExecute::DdeExecute( DdeConnection& rConnection, const OUString& rString, long lLong )
129 0 : : DdeTransaction( rConnection, rString, lLong )
130 : {
131 0 : }
132 :
133 0 : DdePoke::DdePoke( DdeConnection& rConnection, const OUString& rString, const DdeData&, long lLong )
134 0 : : DdeTransaction( rConnection, rString, lLong )
135 : {
136 0 : }
137 :
138 :
139 0 : DdeTopic::DdeTopic( const OUString& )
140 0 : : pName(NULL)
141 : {
142 0 : }
143 :
144 0 : DdeTopic::~DdeTopic()
145 : {
146 0 : }
147 :
148 0 : void DdeTopic::Connect( SAL_UNUSED_PARAMETER long )
149 : {
150 0 : }
151 :
152 0 : void DdeTopic::Disconnect( SAL_UNUSED_PARAMETER long )
153 : {
154 0 : }
155 :
156 0 : void DdeTopic::InsertItem( SAL_UNUSED_PARAMETER DdeItem* )
157 : {
158 0 : }
159 :
160 0 : DdeItem* DdeTopic::AddItem( const DdeItem& rDdeItem )
161 : {
162 0 : return const_cast<DdeItem*>(&rDdeItem);
163 : }
164 :
165 0 : void DdeTopic::RemoveItem( SAL_UNUSED_PARAMETER const DdeItem& )
166 : {
167 0 : }
168 :
169 0 : DdeData* DdeTopic::Get(SAL_UNUSED_PARAMETER SotClipboardFormatId)
170 : {
171 0 : return NULL;
172 : }
173 :
174 0 : bool DdeTopic::MakeItem( SAL_UNUSED_PARAMETER const OUString& )
175 : {
176 0 : return false;
177 : }
178 :
179 0 : bool DdeTopic::StartAdviseLoop()
180 : {
181 0 : return false;
182 : }
183 :
184 0 : bool DdeTopic::StopAdviseLoop()
185 : {
186 0 : return false;
187 : }
188 :
189 0 : bool DdeTopic::Execute( SAL_UNUSED_PARAMETER const OUString* )
190 : {
191 0 : return false;
192 : }
193 :
194 0 : bool DdeTopic::Put( SAL_UNUSED_PARAMETER const DdeData* )
195 : {
196 0 : return false;
197 : }
198 :
199 0 : const OUString DdeTopic::GetName() const
200 : {
201 0 : return OUString();
202 : }
203 :
204 0 : DdeService::DdeService( const OUString& )
205 : : pSysTopic(NULL)
206 : , pName(NULL)
207 : , pConv(NULL)
208 0 : , nStatus(0)
209 : {
210 0 : }
211 :
212 0 : OUString DdeService::Topics()
213 : {
214 0 : return OUString();
215 : }
216 :
217 0 : OUString DdeService::Formats() {
218 0 : return OUString();
219 : }
220 :
221 0 : OUString DdeService::SysItems()
222 : {
223 0 : return OUString();
224 : }
225 :
226 0 : OUString DdeService::Status()
227 : {
228 0 : return OUString();
229 : }
230 :
231 0 : OUString DdeService::SysTopicGet(const OUString& rString)
232 : {
233 0 : return rString;
234 : }
235 :
236 0 : bool DdeService::SysTopicExecute(SAL_UNUSED_PARAMETER const OUString*)
237 : {
238 0 : return false;
239 : }
240 :
241 0 : DdeService::~DdeService()
242 : {
243 0 : }
244 :
245 0 : bool DdeService::IsBusy()
246 : {
247 0 : return false;
248 : }
249 :
250 0 : OUString DdeService::GetHelp()
251 : {
252 0 : return OUString();
253 : }
254 :
255 0 : void DdeService::AddFormat(SAL_UNUSED_PARAMETER SotClipboardFormatId)
256 : {
257 0 : }
258 :
259 0 : void DdeService::AddTopic( SAL_UNUSED_PARAMETER const DdeTopic& )
260 : {
261 0 : }
262 :
263 0 : void DdeService::RemoveTopic( SAL_UNUSED_PARAMETER const DdeTopic& )
264 : {
265 0 : }
266 :
267 0 : bool DdeService::MakeTopic( SAL_UNUSED_PARAMETER const OUString& )
268 : {
269 0 : return false;
270 : }
271 :
272 0 : const OUString DdeService::GetName() const
273 : {
274 0 : return OUString();
275 : }
276 :
277 : namespace
278 : {
279 : struct theDdeServices
280 : : public rtl::Static< DdeServices, theDdeServices > {};
281 : }
282 :
283 0 : DdeServices& DdeService::GetServices()
284 : {
285 0 : return theDdeServices::get();
286 : }
287 :
288 0 : DdeItem::DdeItem( const OUString& )
289 : : pName(NULL)
290 : , pMyTopic(NULL)
291 : , pImpData(NULL)
292 0 : , nType(0)
293 : {
294 0 : }
295 :
296 0 : DdeItem::DdeItem( const DdeItem& )
297 : : pName(NULL)
298 : , pMyTopic(NULL)
299 : , pImpData(NULL)
300 0 : , nType(0)
301 : {
302 0 : }
303 :
304 0 : DdeItem::~DdeItem()
305 : {
306 0 : }
307 :
308 0 : void DdeItem::NotifyClient()
309 : {
310 0 : }
311 :
312 0 : DdeGetPutItem::DdeGetPutItem( const OUString& rStr )
313 0 : : DdeItem( rStr )
314 : {
315 0 : }
316 :
317 0 : DdeGetPutItem::DdeGetPutItem( const DdeItem& rItem )
318 0 : : DdeItem( rItem )
319 : {
320 0 : }
321 :
322 0 : DdeData* DdeGetPutItem::Get( SAL_UNUSED_PARAMETER SotClipboardFormatId )
323 : {
324 0 : return NULL;
325 : }
326 :
327 0 : bool DdeGetPutItem::Put( SAL_UNUSED_PARAMETER const DdeData* )
328 : {
329 0 : return false;
330 : }
331 :
332 0 : void DdeGetPutItem::AdviseLoop( SAL_UNUSED_PARAMETER bool )
333 : {
334 0 : }
335 :
336 0 : DdeLink::DdeLink( DdeConnection& rConnection, const OUString& rString, long l )
337 0 : : DdeTransaction( rConnection, rString, l )
338 : {
339 0 : }
340 :
341 0 : DdeLink::~DdeLink()
342 : {
343 0 : }
344 :
345 0 : void DdeLink::Notify()
346 : {
347 0 : }
348 :
349 0 : DdeHotLink::DdeHotLink( DdeConnection& rConnection, const OUString& rString, long l )
350 0 : : DdeLink( rConnection, rString, l )
351 : {
352 0 : }
353 :
354 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|