1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix broken includes

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2024-08-23 19:28:38 +02:00 committed by Niklas Eiling
parent 594bd938a9
commit 1077caf9ce
2 changed files with 5 additions and 3 deletions

View file

@ -9,6 +9,7 @@
#pragma once
#include <fstream>
#include <filesystem>
#include <iostream>
#include <villas/kernel/devices/driver.hpp>

View file

@ -6,11 +6,12 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <villas/kernel/devices/platform_device.hpp>
#include <villas/kernel/devices/platform_driver.hpp>
#include <villas/kernel/devices/device.hpp>
#include <villas/kernel/devices/utils.hpp>
using villas::kernel::devices::PlatformDevice,
villas::kernel::devices::PlatformDriver;
using villas::kernel::devices::Device, villas::kernel::devices::PlatformDriver;
using villas::kernel::devices::utils::write_to_file;
std::string PlatformDriver::name() const {