Check for silent profile at startup.
[SDL.s60v3.git] / src / main / symbian / ProfileWatcher.h
blobd3ff9a7f62ab41f89f526ce5949cafc46bccaa69
1 #ifndef PROFILE_WATCHER_H
2 #define PROFILE_WATCHER_H
4 #include <e32base.h>
5 #include <profileenginesdkcrkeys.h>
6 #include <centralrepository.h>
8 #include "sdlepocapi.h"
10 class ProfileWatcher : public CActive
12 public:
13 ProfileWatcher(MProfileWatcher& observer);
14 ~ProfileWatcher();
16 int GetProfile();
18 private:
19 void RunL();
20 void DoCancel();
22 CRepository* m_repository;
23 MProfileWatcher& m_observer;
26 #endif