1
0
mirror of synced 2024-11-19 05:17:12 +01:00
ImHex/include/lang/preprocessor.hpp

23 lines
384 B
C++

#pragma once
#include <hex.hpp>
#include "token.hpp"
#include <string>
#include <utility>
#include <set>
namespace hex::lang {
class Preprocessor {
public:
Preprocessor();
std::pair<Result, std::string> preprocess(const std::string& code, bool applyDefines = true);
private:
std::set<std::pair<std::string, std::string>> m_defines;
};
}