mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
17 lines
475 B
C++
17 lines
475 B
C++
#include "SequenceLocalizeFileNotes.h"
|
|
|
|
#include "Parsing/Simple/Matcher/SimpleMatcherFactory.h"
|
|
|
|
SequenceLocalizeFileNotes::SequenceLocalizeFileNotes()
|
|
{
|
|
const SimpleMatcherFactory create(this);
|
|
|
|
AddMatchers({
|
|
create.Keyword("FILENOTES"),
|
|
create.String(),
|
|
create.Type(SimpleParserValueType::NEW_LINE),
|
|
});
|
|
}
|
|
|
|
void SequenceLocalizeFileNotes::ProcessMatch(LocalizeFileParserState* state, SequenceResult<SimpleParserValue>& result) const {}
|