This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/generator/unpack_mwm.hpp
Alexander Borsuk 43985a3ab7 Fixed unity build errors with gcc-12
Never use global using namespace std;

Signed-off-by: Alexander Borsuk <me@alex.bio>
2022-08-06 11:16:52 +02:00

14 lines
312 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