Introduces shared lib that provides the API of D-Bus org.agl.homescreen.
[staging/HomeScreen.git] / SampleHomeScreenInterfaceApp / src / sampleclass.hpp
1 #ifndef SAMPLECLASS_HPP
2 #define SAMPLECLASS_HPP
3
4 #include "libhomescreen.hpp"
5
6 class SampleClass
7 {
8 public:
9     SampleClass();
10     ~SampleClass();
11
12     void hardKeyPressed(int key);
13     void toggleFullScreen();
14
15 private:
16     LibHomeScreen *mp_libHomeScreen;
17 };
18
19 #endif // SAMPLECLASS_HPP