equal
deleted
inserted
replaced
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalTechnology |
|
19 |
|
20 */ |
|
21 |
|
22 #ifndef RRLP_ASSISTANCE_DATA_ACK_H |
|
23 #define RRLP_ASSISTANCE_DATA_ACK_H |
|
24 |
|
25 #include "rrlpmessagebase.h" |
|
26 |
|
27 |
|
28 /** |
|
29 Encapsulation of outgoing RRLP Assistance Data Ack message |
|
30 |
|
31 @internalTechnology |
|
32 */ |
|
33 NONSHARABLE_CLASS(CRrlpAssistanceDataAck) : public CRrlpMessageBase |
|
34 { |
|
35 public: |
|
36 IMPORT_C static CRrlpAssistanceDataAck* NewL(); |
|
37 |
|
38 public: |
|
39 virtual ~CRrlpAssistanceDataAck(); |
|
40 |
|
41 private: |
|
42 /** default constructor */ |
|
43 CRrlpAssistanceDataAck(); |
|
44 |
|
45 /** second stage constructor */ |
|
46 void ConstructL(); |
|
47 |
|
48 /** Prohibit copy constructor */ |
|
49 CRrlpAssistanceDataAck(const CRrlpAssistanceDataAck&); |
|
50 |
|
51 /** Prohibit assigment operator */ |
|
52 CRrlpAssistanceDataAck& operator= (const CRrlpAssistanceDataAck&); |
|
53 }; |
|
54 |
|
55 #endif // RRLP_ASSISTANCE_DATA_ACK_H |
|
56 |
|