Files
App/src/app/lidar_manager_app.hpp
2026-06-13 10:49:41 +07:00

21 lines
310 B
C++

#pragma once
#include <filesystem>
namespace lm {
class LidarManagerApp
{
public:
LidarManagerApp(int port, std::filesystem::path www_root, std::filesystem::path data_path);
int run();
private:
int port_;
std::filesystem::path www_root_;
std::filesystem::path data_path_;
};
} // namespace lm