folder reordering

This commit is contained in:
black
2025-07-06 11:25:11 +02:00
parent ff50d328fb
commit 487621748e
10 changed files with 20 additions and 18 deletions

View File

@@ -1,16 +0,0 @@
//
// Created by black on 12.06.25.
//
#ifndef MANAGER_H
#define MANAGER_H
class Manager {
};
#endif //MANAGER_H

View File

@@ -2,4 +2,4 @@
// Created by black on 12.06.25.
//
#include "Manager.h"
#include "emulator/Manager.h"

18
src/Manager.h Normal file
View File

@@ -0,0 +1,18 @@
//
// Created by black on 12.06.25.
//
#ifndef MANAGER_H
#define MANAGER_H
/// Die Manager Instanz sorgt für die Koordination von user input, Datei einlesen, code execution und anderen Aktionen.
class Manager {
public:
};
#endif //MANAGER_H

View File

@@ -2,7 +2,7 @@
// Created by black on 12.06.25.
//
#include "CommandParser.h"
#include "emulator/CommandParser.h"
#include <sstream>