rpi_player/app/impl_application.h

20 lines
358 B
C++

#ifndef IMPL_APPLICATION_H
#define IMPL_APPLICATION_H
#include "application.h"
#include "main_scene.h"
#include "vlc_scene.h"
class ImplApplication : public Application {
public:
ImplApplication() : Application() {
scene = new VLCScene();
//scene = new MainScene();
}
~ImplApplication() {
delete scene;
}
};
#endif