equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Contains CNcdNodeSupplier class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef NCDNODESUPPLIER_H |
|
20 #define NCDNODESUPPLIER_H |
|
21 |
|
22 #include "ncdnodeimpl.h" |
|
23 |
|
24 class CNcdNodeSupplier : public CNcdNode |
|
25 { |
|
26 public: |
|
27 static CNcdNodeSupplier* NewL( |
|
28 CNcdNodeManager& aNodeManager, |
|
29 const CNcdNodeIdentifier& aIdentifier ); |
|
30 |
|
31 static CNcdNodeSupplier* NewLC( |
|
32 CNcdNodeManager& aNodeManager, |
|
33 const CNcdNodeIdentifier& aIdentifier ); |
|
34 |
|
35 protected: // from CNcdNode |
|
36 |
|
37 /** |
|
38 * Constructor. |
|
39 */ |
|
40 CNcdNodeSupplier( CNcdNodeManager& aNodeManager ); |
|
41 |
|
42 /** |
|
43 * Creates the node link if the link is not yet created. |
|
44 * |
|
45 * @return The created link or the old link if it already existed. |
|
46 */ |
|
47 virtual CNcdNodeLink* CreateLinkL(); |
|
48 }; |
|
49 |
|
50 #endif |