sensorfw
sensors/contextplugin/contextplugin.h
Go to the documentation of this file.
00001 
00025 #ifndef CONTEXTPLUGIN_H
00026 #define CONTEXTPLUGIN_H
00027 
00028 #include "plugin.h"
00029 
00030 class ContextPlugin : public Plugin
00031 {
00032 public:
00033     static int getSessionId();
00034 
00035 private:
00036     void Register(class Loader& l);
00037     void Init(class Loader& l);
00038     QStringList Dependencies();
00039 
00040     static int sessionId;
00041 };
00042 
00043 #endif