00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00022 #ifndef __ADDER_H__
00023 #define __ADDER_H__
00024
00025 #include "sharedmem.h"
00026
00036 class CAdder : public CActive
00037 {
00038 public:
00039 static CAdder* NewL(CConsoleBase* aConsole);
00040 void RunL();
00041 void DoCancel();
00042 ~CAdder();
00043 void StartTimer();
00044 void StopTimer();
00045 void ReadFunction();
00046 static TInt AddFunction(TAny* aPtr);
00047 void Add();
00048 private:
00049 CAdder();
00050 void ConstructL(CConsoleBase* aConsole);
00051 private:
00056 RCondVar iCondVar;
00060 RMutex iMutex;
00065 RChunk iChunk;
00070 CPeriodic* iPeriodic;
00074 CConsoleBase* iConsole;
00075 };
00076
00077 #endif