00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include <e32base.h>
00017 #include <e32std.h>
00018
00022 class CDelayServerShutDown : public CActive
00023 {
00024 public:
00025
00026 static CDelayServerShutDown* NewL();
00027 ~CDelayServerShutDown();
00028
00029 void SetDelay(TTimeIntervalMicroSeconds32 aDelay);
00030 private:
00031
00032 CDelayServerShutDown();
00033 void ConstructL();
00034
00035
00036 void RunL();
00037 void DoCancel();
00038 private:
00040 RTimer iShutDownTimer;
00041 };
00042
00043