#ifndef SAMPLECLASS_HPP #define SAMPLECLASS_HPP #include "libhomescreen.hpp" #include class SampleClass { public: SampleClass(); ~SampleClass(); std::vector getAllSurfacesOfProcess(int pid); int getSurfaceStatus(int surfaceId); void hardKeyPressed(int key); void renderSurfaceToArea(int surfaceId, int layoutArea); bool renderAppToAreaAllowed(int appCategory, int layoutArea); void requestSurfaceIdToFullScreen(int surfaceId); private: LibHomeScreen *mp_libHomeScreen; }; #endif // SAMPLECLASS_HPP