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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef CTEST_RTCP_H |
|
22 #define CTEST_RTCP_H |
|
23 |
|
24 // INCLUDES |
|
25 #include <e32cons.h> |
|
26 #include <e32base.h> |
|
27 #include "mmccnetworksettings.h" |
|
28 |
|
29 // FORWARD DECLARATIONS |
|
30 |
|
31 // CLASS |
|
32 class CTestRtcp : public CBase |
|
33 { |
|
34 public: |
|
35 static CTestRtcp* NewL( CConsoleBase& aConsole, |
|
36 const TMccNetSettings& aNetsettings ); |
|
37 virtual ~CTestRtcp(); |
|
38 |
|
39 public: |
|
40 void DoRunRtcpTestsL(); |
|
41 private: |
|
42 // RTCP related tests |
|
43 void TestSendRTCPReceiverReportL(); |
|
44 void TestSendRTCPSenderReportL(); |
|
45 void TestSendRTCPDataL(); |
|
46 |
|
47 void TestSetSdesL(); |
|
48 void TestSendAppL(); |
|
49 void TestSendByeL(); |
|
50 |
|
51 private: |
|
52 CTestRtcp( CConsoleBase& aConsole, |
|
53 const TMccNetSettings& aNetsettings ); |
|
54 void ConstructL(); |
|
55 |
|
56 private: |
|
57 |
|
58 // Not own |
|
59 CConsoleBase& iConsole; |
|
60 |
|
61 TMccNetSettings iNetsettings; |
|
62 }; |
|
63 |
|
64 #endif //CTEST_RTCP_H |
|
65 |
|
66 // End of File |