mirror of
https://github.com/Relintai/rpi_player.git
synced 2024-11-20 09:17:17 +01:00
20 lines
358 B
C++
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 |