fixing broken includes

This commit is contained in:
Erris 2025-04-19 08:49:41 +02:00
parent e1d69294f4
commit b714c6f82d
4 changed files with 9 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#ifndef STATEMACHINE_POOL_HPP
#define STATEMACHINE_POOL_HPP
#include <state_machine.hpp>
#include "state_machine.hpp"
template<typename StateOwnerType>
class StateMachinePool {

View File

@ -2,7 +2,8 @@
#define STATE_FACTORY_HPP
#include <memory>
#include <state.hpp>
#include "state.hpp"
template <typename OwnerType>

View File

@ -3,9 +3,11 @@
#include <string>
#include <memory>
#include <nlohmann/json.hpp>
#include <vector>
#include <state_factory.hpp>
#include <nlohmann/json.hpp>
#include "state_factory.hpp"
using json = nlohmann::json;

View File

@ -1,8 +1,8 @@
#ifndef STATE_SYSTEM_HPP
#define STATE_SYSTEM_HPP
#include <state_machine.hpp>
#include <state-machine_pool.hpp>
#include "state_machine.hpp"
#include "state-machine_pool.hpp"
class StateSystem {
public: