00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __CDYNAMICCAPS_H_
00018 #define __CDYNAMICCAPS_H_
00019
00020 #include <e32base.h>
00021 #include <e32cons.h>
00022 #include <e32def.h>
00023 #include <Etel3rdParty.h>
00024
00025 #include "CISVAPIAsync.h"
00026 #include "CMainMenu.h"
00027
00033 class CDynamicCaps : public CISVAPIAsync
00034 {
00035
00036
00037 public:
00038 static CDynamicCaps* NewL(MExecAsync* aController, CTelephony::TCallId aCallId);
00039 ~CDynamicCaps();
00040
00041 void doStartRequestL();
00042
00043 private:
00044 CDynamicCaps(MExecAsync* aController, CTelephony::TCallId aCallId);
00045 void ConstructL();
00046
00047 void RunL();
00048 void DoCancel();
00049
00050
00051 public:
00055 CTelephony::TCallCapsV1 iCallCapsV1;
00059 CTelephony::TCallId iCallId;
00060
00061 private:
00065 CTelephony::TCallCapsV1Pckg iCallCapsV1Pckg;
00066
00067 };
00068
00069 #endif // __CDYNAMICCAPS_H_