summaryrefslogtreecommitdiffstats
path: root/SampleHomeScreenInterfaceApp/src/sampleclass.hpp
blob: aa5f376c5be6dd7627184d3f05723cf735603d8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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