0
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 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 the License "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:
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef MUSBPNCONTROLOBSERVER_H
|
|
20 |
#define MUSBPNCONTROLOBSERVER_H
|
|
21 |
|
|
22 |
// INCLUDES
|
|
23 |
// CONSTANTS
|
|
24 |
// MACROS
|
|
25 |
// DATA TYPES
|
|
26 |
// FUNCTION PROTOTYPES
|
|
27 |
// FORWARD DECLARATIONS
|
|
28 |
class CUsbPnPacket;
|
|
29 |
// CLASS DECLARATION
|
|
30 |
|
|
31 |
class MUsbPnControlObserver
|
|
32 |
{
|
|
33 |
public: // New functions
|
|
34 |
|
|
35 |
/**
|
|
36 |
* Get packet for sending.
|
|
37 |
* @since Series ?XX ?SeriesXX_version
|
|
38 |
* @param ?arg1 ?description
|
|
39 |
* @return ?description
|
|
40 |
*/
|
|
41 |
virtual CUsbPnPacket& PacketL() = 0;
|
|
42 |
|
|
43 |
/**
|
|
44 |
* Send packet.
|
|
45 |
* @since Series ?XX ?SeriesXX_version
|
|
46 |
* @param ?arg1 ?description
|
|
47 |
* @return ?description
|
|
48 |
*/
|
|
49 |
virtual void Send( CUsbPnPacket& aPacket ) = 0;
|
|
50 |
|
|
51 |
};
|
|
52 |
|
|
53 |
#endif // MUSBPNCONTROLOBSERVER_H
|
|
54 |
|
|
55 |
// End of File
|