Added code

This commit is contained in:
除村 武志
2020-02-26 17:13:02 +09:00
parent 64dcb731c2
commit 941a120dea
126 changed files with 19555 additions and 1 deletions

View File

@ -0,0 +1,37 @@
/*
==============================================================================
FrameSequenceParseErrors.h
Created: 11 Dec 2019 5:06:52pm
Author: 除村 武志
==============================================================================
*/
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
enum ParseError
{
kParseErrorNone = 0,
kParseErrorLevelWarning,
kParseErrorLevelFatal,
kParseErrorDuplicatedReleaseDelimiter,
kParseErrorDuplicatedOpenBracket,
kParseErrorDuplicatedCloseBracket,
kParseErrorRepeatingInReleaseBlock,
kParseErrorUnmatchingOpenBracket,
kParseErrorUnmatchingCloseBracket,
kParseErrorUnmatchingBracketNumber,
kParseErrorMissingSlopeValueDelimiter,
kParseErrorMissingSlopeLengthDelimiter,
kParseErrorMissingSlopeInitialValue,
kParseErrorMissingSlopeFinalValue,
kParseErrorNotANumber,
kParseErrorValueOutOfRange,
kParseErrorFrameLengthTooShort,
kParseErrorMissingValueForRepeatDelimiter,
kParseErrorMissingFrameCountForRepeatDelimiter,
};
String getParseErrorString (ParseError err, int minValue = 0, int maxValue = 0);