Files
comaps/generator/unpack_mwm.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

14 lines
311 B
C++

#pragma once
#include "base/base.hpp"
#include <string>
namespace generator
{
// Unpack each section of mwm into a separate file with name filePath.sectionName
void UnpackMwm(std::string const & filePath);
void DeleteSection(std::string const & filePath, std::string const & tag);
} // namespace generator