mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-15 17:27:57 -05:00
Reformat code with clang format
This commit is contained in:
@ -1,17 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <functional>
|
||||
|
||||
#include "Parsing/Menu/MenuFileParser.h"
|
||||
#include "Parsing/Menu/Domain/EventHandler/CommonEventHandlerSet.h"
|
||||
#include "Parsing/Menu/MenuFileParser.h"
|
||||
|
||||
#include <functional>
|
||||
#include <string>
|
||||
|
||||
namespace menu
|
||||
{
|
||||
class GenericMenuEventHandlerSetPropertySequence final : public MenuFileParser::sequence_t
|
||||
{
|
||||
public:
|
||||
using callback_t = std::function<std::unique_ptr<CommonEventHandlerSet>& (MenuFileParserState* state, const TokenPos& pos)>;
|
||||
using callback_t = std::function<std::unique_ptr<CommonEventHandlerSet>&(MenuFileParserState* state, const TokenPos& pos)>;
|
||||
|
||||
private:
|
||||
static constexpr auto CAPTURE_FIRST_TOKEN = 1;
|
||||
@ -24,4 +24,4 @@ namespace menu
|
||||
public:
|
||||
GenericMenuEventHandlerSetPropertySequence(std::string keywordName, callback_t setCallback);
|
||||
};
|
||||
}
|
||||
} // namespace menu
|
||||
|
Reference in New Issue
Block a user