Introduces shared lib that provides the API of D-Bus org.agl.homescreen.
[staging/HomeScreen.git] / SampleHomeScreenInterfaceApp / src / sampleclass.hpp
diff --git a/SampleHomeScreenInterfaceApp/src/sampleclass.hpp b/SampleHomeScreenInterfaceApp/src/sampleclass.hpp
new file mode 100644 (file)
index 0000000..aa5f376
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef SAMPLECLASS_HPP
+#define SAMPLECLASS_HPP
+
+#include "libhomescreen.hpp"
+
+class SampleClass
+{
+public:
+    SampleClass();
+    ~SampleClass();
+
+    void hardKeyPressed(int key);
+    void toggleFullScreen();
+
+private:
+    LibHomeScreen *mp_libHomeScreen;
+};
+
+#endif // SAMPLECLASS_HPP