Skip to content

Commit 8b41212

Browse files
committed
WIP
1 parent e55286c commit 8b41212

File tree

9 files changed

+65
-0
lines changed

9 files changed

+65
-0
lines changed

app/CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@ set(FIL_SOURCE
5454
launcher/implementation/attractmode/am-settings-items.cpp
5555
launcher/implementation/attractmode/am-registration.h
5656
launcher/implementation/attractmode/am-registration.cpp
57+
launcher/implementation/emulationstation/es-data.h
58+
launcher/implementation/emulationstation/es-data.cpp
59+
launcher/implementation/emulationstation/es-install.h
60+
launcher/implementation/emulationstation/es-install.cpp
61+
launcher/implementation/emulationstation/es-items.h
62+
launcher/implementation/emulationstation/es-items.cpp
63+
launcher/implementation/emulationstation/es-registration.h
64+
launcher/implementation/emulationstation/es-registration.cpp
5765
launcher/interface/lr-data-interface.h
5866
launcher/interface/lr-data-interface.cpp
5967
launcher/interface/lr-install-interface.h
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Unit Include
2+
#include "es-data.h"
3+
4+
namespace Es
5+
{
6+
7+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#ifndef EMULATIONSTATION_DATA_H
2+
#define EMULATIONSTATION_DATA_H
3+
4+
namespace Es
5+
{
6+
7+
}
8+
9+
#endif // EMULATIONSTATION_DATA_H

app/src/launcher/implementation/emulationstation/es-install.cpp

Whitespace-only changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#ifndef EMULATIONSTATION_INSTALL_H
2+
#define EMULATIONSTATION_INSTALL_H
3+
4+
namespace Es
5+
{
6+
7+
}
8+
9+
#endif // EMULATIONSTATION_INSTALL_H
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Unit Include
2+
#include "es-items.h"
3+
4+
namespace Es
5+
{
6+
7+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#ifndef EMULATIONSTATION_ITEMS_H
2+
#define EMULATIONSTATION_ITEMS_H
3+
4+
namespace Es
5+
{
6+
7+
}
8+
9+
#endif // EMULATIONSTATION_ITEMS_H
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Unit Include
2+
#include "es-registration.h"
3+
4+
namespace Es
5+
{
6+
7+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#ifndef EMULATIONSTATION_REGISTRATION_H
2+
#define EMULATIONSTATION_REGISTRATION_H
3+
4+
namespace Es
5+
{
6+
7+
}
8+
9+
#endif // EMULATIONSTATION_REGISTRATION_H

0 commit comments

Comments
 (0)